-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.71 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ttopen-cli",
"description": "CLI tool for ttopen task tracker deployment and management",
"version": "1.0.0",
"type": "module",
"bin": {
"tt": "./dist/bin/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx ./bin/index.ts",
"start": "node dist/bin/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "pnpm exec prettier --write \"**/*.{ts,js,json,md,yml}\"",
"format:check": "pnpm exec prettier --check \"**/*.{ts,js,json,md,yml}\"",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"cli",
"ttopen",
"deployment",
"task-tracker"
],
"license": "MIT",
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"execa": "^9.6.1",
"ora": "^9.4.0",
"prompts": "^2.4.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.8.0",
"eslint": "^10.4.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md,yml}": [
"prettier --write"
]
}
}