-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 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
61
62
63
64
{
"name": "@iwtem/cli",
"author": "iwtem",
"version": "1.3.0",
"keywords": [
"scaffold",
"react"
],
"description": "快速创建项目",
"homepage": "https://github.com/iwtem/cli#README.md",
"bugs": {
"url": "https://github.com/iwtem/cli/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/iwtem/cli"
},
"bin": {
"iwtem": "bin/iwtem-cli.js"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"files": [
"bin",
"lib",
".env"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"eslint": "^8.15.0",
"husky": "^8.0.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"chalk": "^4.1.2",
"commander": "^9.2.0",
"dotenv": "^16.0.1",
"download-git-repo": "^3.0.2",
"ejs": "^3.1.8",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"jsonfile": "^6.1.0",
"ora": "^5.4.1",
"semver": "^7.3.7"
}
}