-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 997 Bytes
/
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
{
"name": "create-react-scaffold",
"description": "创建 `React` 应用程序模板,支持 `vite` 构建工具",
"version": "1.0.5",
"main": "./dist/index.js",
"scripts": {
"dev": "tsc -w",
"build": "rm -rf dist && tsc",
"pub": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joye61/create-react-scaffold.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react",
"scaffold"
],
"author": "Joye",
"license": "MIT",
"bugs": {
"url": "https://github.com/joye61/create-react-scaffold/issues"
},
"homepage": "https://github.com/joye61/create-react-scaffold#readme",
"devDependencies": {
"@types/node": "^20.9.0",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"typescript": "^5.2.2"
},
"dependencies": {
"history": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}