-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.71 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
65
66
67
68
69
70
{
"name": "nstarter",
"description": "Startup CLI tool for node projects with template.",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/jiandaoyun/nstarter.git",
"directory": "cli"
},
"license": "MIT",
"bin": {
"nstarter": "./dist/index.js"
},
"type": "module",
"files": [
"src/",
"dist/",
"doc/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.json && npm run esm-fix",
"esm-fix": "tsc-esm-fix --dirnameVar=false --target='./dist'",
"start": "node ./dist/index.js",
"eslint": "eslint --ext .js,.ts --config .eslintrc.cjs ./src",
"eslint:html": "npm run eslint -- --output-file ./lint/eslint.html --format html",
"clean": "rimraf dist && rimraf lint",
"upload": "npm-publish ./"
},
"keywords": [
"project starter",
"node.js",
"typescript",
"nstarter",
"starter",
"template"
],
"dependencies": {
"async": "^3.2.5",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"inquirer": "^9.3.5",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.45",
"nstarter-core": "*",
"simple-git": "^3.25.0",
"which": "^4.0.0",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0",
"winston-transport": "^4.7.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.7",
"@types/which": "^3.0.4",
"@types/yargs": "^17.0.32",
"tsc-esm-fix": "^3.0.2"
},
"engines": {
"node": ">=20.16.0",
"npm": ">=10.8.0"
}
}