-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "koa-inventor",
"version": "1.2.2",
"description": "a cli for create koa project",
"main": "index.js",
"type": "module",
"bin": "./dist/index.js",
"homepage": "https://github.com/vikoala/koa-inventor#readme",
"repository": "https://github.com/vikoala/koa-inventor.git",
"scripts": {
"start": "node dist/index.js",
"build": "rollup --config rollup.config.ts",
"test": "npm run build && npm link"
},
"files": [
"dist",
"package.json",
"templates"
],
"keywords": [
"cli",
"koa",
"javascript",
"typescript",
"tool",
"command line"
],
"author": "danyuan30",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.4.0",
"ejs": "^3.1.8",
"execa": "^6.1.0",
"inquirer": "^9.1.0",
"minimist": "^1.2.6"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@types/commander": "^2.12.2",
"@types/ejs": "^3.1.1",
"@types/inquirer": "^9.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.7.12",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"typescript": "^4.7.4"
}
}