-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.45 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.45 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
{
"name": "@xerrors/taskr",
"version": "0.1.5",
"description": "Repo-local task protocol for AI-assisted software development.",
"license": "MIT",
"author": "xerrors",
"homepage": "https://github.com/xerrors/taskr#readme",
"bugs": {
"url": "https://github.com/xerrors/taskr/issues"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/xerrors/taskr.git"
},
"keywords": [
"taskr",
"ai",
"agents",
"task-management",
"markdown",
"cli",
"kanban"
],
"packageManager": "npm@10.9.2",
"main": "./dist/protocol.js",
"types": "./dist/protocol.d.ts",
"exports": {
".": {
"types": "./dist/protocol.d.ts",
"import": "./dist/protocol.js"
}
},
"bin": {
"taskr": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc",
"test": "vitest run",
"check": "npm run build && npm test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepack": "npm run build"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.3",
"prettier": "^3.8.3",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
}
}