-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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
{
"name": "@viterjs/renderer",
"version": "3.0.2",
"description": "Base support for render",
"keywords": [
"react-router",
"render"
],
"author": "jerryYuX <[email protected]>",
"homepage": "https://github.com/ykfe/viter",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"directories": {
"dist": "dist"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ykfe/viter.git"
},
"scripts": {
"prepublishOnly": "node scripts/prepublish.js",
"lint-eslint": "eslint --cache --ext .ts,.tsx ./src",
"check-types": "tsc --noEmit",
"lint": "npm run lint-eslint & npm run check-types",
"declare-type": "tsc --emitDeclarationOnly",
"build": "npm run declare-type && rollup -c && cp -R ./src/generateInitFiles/tplFiles ./dist",
"watch": "watch 'npm run build' ./src"
},
"bugs": {
"url": "https://github.com/ykfe/viter/issues"
},
"dependencies": {
"art-template": "^4.13.2",
"lodash-es": "^4.17.21",
"mkdirp": "^1.0.4",
"react-router-dom": "^6.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.170",
"@types/lodash-es": "^4.17.4",
"@types/mkdirp": "^1.0.1",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"object-assign": "^4.1.1",
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
},
"gitHead": "8d18cfcc65974c798cbca516cd64cbb89f28552b"
}