-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1003 Bytes
/
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
{
"name": "node-cli-starter",
"version": "0.0.0",
"description": "Basic starter kit for building Node CLI applications with TypeScript.",
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"type": "module",
"files": [
"*"
],
"scripts": {
"start": "node --trace-warnings dist/lib/index.js",
"clean": "del ./dist",
"build": "tsc --project ./tsconfig.lib.json && rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coryrylan/node-cli-starter.git"
},
"keywords": [
"node",
"cli",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"cpy-cli": "^3.1.1",
"del-cli": "^4.0.1",
"nodemon": "^2.0.15",
"rollup": "^2.66.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@cds/core": "^5.6.2",
"fs-extra": "^10.0.0",
"jsdom": "^19.0.0",
"lit": "^2.1.2",
"tslib": "^2.3.1",
"yargs": "^17.3.1"
}
}