-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "@taskhelm/cli",
"version": "0.1.0",
"private": true,
"description": "Developer-facing command line interface for TaskHelm Engine.",
"type": "module",
"bin": {
"taskhelm": "./dist/bin/taskhelm.js"
},
"main": "./dist/bin/taskhelm.js",
"types": "./dist/bin/taskhelm.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"dev": "tsx watch --clear-screen=false src/bin/taskhelm.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/bin/taskhelm.js",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm.cmd run build && node dist/bin/taskhelm.js --help",
"clean": "node --eval \"import('node:fs/promises').then((fs) => fs.rm('dist', { recursive: true, force: true }))\""
},
"dependencies": {
"commander": "^13.1.0",
"picocolors": "^1.1.1",
"yaml": "^2.8.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/node": "^24.0.0",
"eslint": "^9.23.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
}
}