-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "node-cli-starter",
"version": "0.0.0",
"description": "Basic starter kit for building Node CLI applications with TypeScript.",
"main": "./index.ts",
"module": "./index.ts",
"type": "module",
"bin": {
"ncs": "./src/index.ts"
},
"files": [
"src",
"package.json"
],
"scripts": {
"start": "./src/index.ts",
"postinstall": "pnpm link --global",
"uninstall": "pnpm uninstall --global node-cli-starter",
"ci": "echo 'CI'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coryrylan/node-cli-starter.git"
},
"keywords": [
"node",
"cli",
"typescript"
],
"author": "Cory Rylan",
"license": "MIT",
"bugs": {
"url": "https://github.com/coryrylan/node-cli-starter/issues"
},
"homepage": "https://github.com/coryrylan/node-cli-starter#readme",
"devDependencies": {
"@types/node": "^24.0.3",
"typescript": "~5.8.3"
},
"dependencies": {
"@inquirer/prompts": "7.6.0",
"fs-extra": "^10.0.0",
"yargs": "^17.3.1"
}
}