-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "create-react-scaffold",
"description": "创建 `React` 应用程序模板,支持 `vite` 构建工具",
"version": "1.1.3",
"main": "./dist/index.js",
"scripts": {
"dev": "tsc -w",
"build": "rm -rfv ./dist && tsc",
"pub": "npm run build && npm publish",
"type-check": "tsc --noEmit"
},
"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",
"dependencies": {
"history": "^5.3.0"
},
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"typescript": "^5.9.3",
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}