-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.99 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@dxsixpc/create",
"version": "0.2.3",
"description": "脚手架",
"homepage": "https://dxsixpc.github.io/create",
"repository": "https://github.com/dxsixpc/create",
"license": "MIT",
"author": {
"name": "dxsixpc",
"email": "dxsixpc@gmail.com"
},
"main": "dist/index.mjs",
"bin": {
"@dxsixpc/create": "dist/index.mjs"
},
"files": [
"dist",
"template"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"commit": "git add . && git-cz",
"deploy": "pnpm run docs:build && pnpm run docs:deploy",
"dev": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"doctor": "father doctor",
"prepare": "husky install && dumi setup",
"prepublishOnly": "father doctor && pnpm run build",
"start": "pnpm run dev"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"conf": "^11.0.1",
"execa": "^7.1.1",
"fs-extra": "^11.1.0",
"git-config-path": "^2.0.0",
"github-username": "^7.0.0",
"globby": "^13.1.3",
"inquirer": "^8.2.5",
"make-dir": "^3.1.0",
"ora": "^6.1.2",
"parse-git-config": "^3.0.0",
"validate-npm-package-name": "^5.0.0",
"which": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@commitlint/cz-commitlint": "^17.4.4",
"@dxsixpc/configs": "^0.4.19",
"commitizen": "^4.3.0",
"dumi": "^2.1.15",
"eslint": "^8.36.0",
"father": "^4.1.7",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"styled-components": "^5.3.9",
"stylelint": "^15.3.0",
"typescript": "^5.0.2",
"webpack": "^5.76.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}