-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@vkontakte/vk-mini-apps-router",
"version": "1.7.3",
"description": "React-роутер для мини-приложений ВКонтакте, построенных на VKUI",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"author": "VK Team <https://vk.com/team>",
"license": "MIT",
"homepage": "https://dev.vk.com/libraries/router",
"bugs": "https://github.com/VKCOM/vk-mini-apps-router/issues",
"contributors": [
{
"name": "Nikita Shvyryaev",
"url": "https://vk.com/shvyryaevng"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/VKCOM/vk-mini-apps-router.git"
},
"scripts": {
"build": "tsc",
"lint:eslint": "eslint src/ --ext ts,tsx",
"lint:fix": "eslint src/ --ext ts,tsx",
"lint:prettier": "prettier --check .",
"lint:ci": "yarn lint:eslint && yarn lint:prettier",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@remix-run/router": "^1.13.0"
},
"peerDependencies": {
"@vkontakte/vk-bridge": "^2.7.2",
"@vkontakte/vkui": "^5.1.0 || ^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.0.0",
"@vkontakte/eslint-plugin": "^1.2.0",
"@vkontakte/prettier-config": "^0.1.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^2.7.1",
"typescript": "^5.1.6"
},
"files": [
"./dist"
]
}