first commit

This commit is contained in:
2025-12-27 18:18:32 +03:00
commit 2d20861db1
228 changed files with 467019 additions and 0 deletions

37
node_modules/@vkontakte/vk-bridge/package.json generated vendored Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "@vkontakte/vk-bridge",
"version": "2.15.11",
"description": "Connects a Mini App with VK client",
"license": "MIT",
"main": "dist/index.js",
"browser": "dist/index.umd.js",
"module": "dist/index.es.js",
"umdName": "vkBridge",
"types": "dist/types/src/index.d.ts",
"typesVersions": {
"<4.0": {
"*": [
"dist/types3.8.3/src/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"watch": "yarn run --top-level rollup -c -w",
"build": "NODE_ENV=production yarn run --top-level rollup -c && yarn run build:legacy-types",
"build:legacy-types": "yarn run --top-level rollup -c rollup.config-legacy-types.mjs >/dev/null",
"prepack": "yarn run build",
"test": "yarn run --top-level jest --config ../../jest.config.js"
},
"author": {
"name": "VK",
"url": "https://vk.ru"
},
"repository": {
"type": "git",
"url": "https://github.com/VKCOM/vk-bridge",
"directory": "packages/core"
}
}