-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "create-fite",
"version": "1.7.1",
"description": "快速创建可用模板",
"keywords": [
"charrue",
"cli",
"degit",
"template"
],
"author": "ckangwen",
"repository": {
"type": "git",
"url": "git+https://github.com/charrue/create-fite.git"
},
"homepage": "https://github.com/charrue/create-fite",
"license": "MIT",
"main": "index.js",
"bin": {
"create-fite": "bin/create-fite.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsup",
"prepublish": "npm run build"
},
"dependencies": {
"@clack/prompts": "^0.6.3",
"degit": "^2.8.4",
"kolorist": "^1.5.0",
"minimist": "^1.2.5"
},
"devDependencies": {
"@charrue/eslint-config-typescript": "^0.3.0",
"@types/degit": "^2.8.3",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.11",
"eslint": "^8.3.0",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}