-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.52 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.52 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
60
61
62
63
64
65
66
67
{
"name": "@metyatech/task-tracker",
"version": "0.2.6",
"description": "Persistent task lifecycle tracker for AI agent sessions",
"type": "module",
"bin": {
"task-tracker": "dist/cli.js"
},
"files": [
"dist",
"public",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metyatech/task-tracker.git"
},
"bugs": {
"url": "https://github.com/metyatech/task-tracker/issues"
},
"homepage": "https://github.com/metyatech/task-tracker",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\" \"*.json\" \"*.md\"",
"format:check": "prettier --check \"src/**/*.ts\" \"*.json\" \"*.md\"",
"verify": "npm run format:check && npm run lint && npm run build && npm run test",
"prepare": "husky"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"nanoid": "^5.0.7"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.2.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.0"
},
"overrides": {
"minimatch": "10.2.4"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --check",
"eslint"
],
"*.{json,md}": [
"prettier --check"
]
}
}