-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.78 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
58
59
60
61
62
63
64
{
"name": "react-stack-router",
"version": "2.3.4",
"description": "react 手机端路由",
"keywords": [
"react-router",
"mobile-router",
"stack-router"
],
"author": "liuweigl",
"license": "MIT",
"repository": "https://github.com/liuweiGL/react-stack-router",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"src"
],
"main": "./dist/react-stack-router.umd.js",
"module": "./dist/react-stack-router.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/react-stack-router.es.js",
"require": "./dist/react-stack-router.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.build.json",
"lint": "tsc -p tsconfig.json --noEmit && eslint \"src/router/**/*.ts?(x)\" --color --quiet --fix",
"release": "semantic-release",
"prebuild": "npm run lint",
"prerelease": "npm run build"
},
"dependencies": {
"history": "^5.3.0",
"react-freeze": "^1.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vitejs/plugin-react": "^1.2.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semantic-release": "^19.0.2",
"typescript": "latest",
"vite": "^2.8.6"
}
}