-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.25 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": "@mntm/native-router",
"version": "1.0.1",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": {
"name": "Anton Petrov",
"email": "im@petrov.engineer",
"url": "https://petrov.engineer"
},
"description": "A functional native-like router for VK Mini Apps",
"license": "MIT",
"keywords": [
"vk",
"vkontakte",
"vkminiapps",
"vk-mini-apps",
"vk-apps",
"native",
"router"
],
"homepage": "https://github.com/mntm-lib/native-router",
"bugs": "https://github.com/mntm-lib/native-router/issues",
"repository": {
"type": "git",
"url": "https://github.com/mntm-lib/native-router.git"
},
"sideEffects": false,
"scripts": {
"prebuild": "shx rm -rf lib",
"build": "tsc"
},
"devDependencies": {
"@mntm/eslint-config": "^1.0.0",
"@mntm/shared": "^4.0.0",
"@types/node": "^17.0.14",
"@types/react": "^17.0.39",
"eslint": "^8.8.0",
"mitt": "^3.0.0",
"shx": "^0.3.4",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@mntm/shared": "^4.0.0",
"mitt": "^3.0.0"
},
"peerDependenciesMeta": {
"@mntm/shared": {
"optional": false
},
"mitt": {
"optional": false
}
}
}