-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "@kcosr/agent-pack",
"version": "0.3.0",
"description": "Prepare durable work packets for coding agents.",
"type": "module",
"bin": {
"agent-pack": "dist/cli/main.js"
},
"files": ["dist", "README.md", "docs", "examples"],
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/chmod-bin.mjs",
"build:bun": "node scripts/build-bun.mjs",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"test": "vitest run test/unit test/integration",
"test:smoke": "npm run build && vitest run test/smoke",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "npm run lint && npm run typecheck && npm run test",
"release": "node scripts/release.mjs",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^12.1.0",
"fast-glob": "^3.3.3",
"yaml": "^2.6.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,json}": ["biome format --write"]
},
"engines": {
"node": ">=20"
}
}