-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 944 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 944 Bytes
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
{
"name": "task-manager-ts",
"version": "1.0.0",
"description": "TypeScript Task Management Tool - Learning Project",
"main": "dist/index.js",
"bin": {
"task-manager": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "nodemon --exec ts-node src/index.ts",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"link": "npm run build && npm link",
"unlink": "npm unlink -g task-manager-ts"
},
"keywords": [
"typescript",
"cli",
"task-management",
"learning-project"
],
"author": "andylinee",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^24.5.2",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.1",
"inquirer": "^12.9.6"
}
}