forked from vincentkoc/agentrinse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.98 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
68
69
70
71
72
73
74
75
{
"name": "agentrinse",
"version": "0.7.0",
"private": false,
"description": "Safe, local-first cleanup for agentic development.",
"keywords": [
"agents",
"cleanup",
"cli",
"developer-tools",
"docker",
"git",
"worktrees"
],
"homepage": "https://github.com/vincentkoc/agentrinse",
"bugs": {
"url": "https://github.com/vincentkoc/agentrinse/issues"
},
"license": "MIT",
"author": "Vincent Koc",
"repository": {
"type": "git",
"url": "git+https://github.com/vincentkoc/agentrinse.git"
},
"bin": {
"agentrinse": "dist/cli.js"
},
"files": [
"dist",
"schemas",
"LICENSE",
"README.md"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm schemas:check",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint src test",
"pack:check": "pnpm build && pnpm schemas:check && node scripts/check-package-manifest.mjs && publint && npm pack --dry-run",
"schemas:check": "pnpm build && node scripts/generate-schemas.mjs --check",
"schemas:generate": "pnpm build && node scripts/generate-schemas.mjs",
"smoke": "pnpm build && node scripts/stateless-audit-smoke.mjs && node scripts/smoke.mjs",
"smoke:package": "pnpm build && node scripts/smoke-package.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"commander": "15.0.0",
"koffi": "3.1.2",
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "24.13.3",
"oxfmt": "0.60.0",
"oxlint": "1.75.0",
"publint": "0.3.22",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.2.2"
}