-
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) · 2.1 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.1 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": "trellis-exec",
"version": "0.8.5",
"description": "Implementation executor. Runs phased task plans with sub-agent dispatch, verification, and iterative refinement.",
"homepage": "https://github.com/robmclarty/trellis-exec#readme",
"bugs": {
"url": "https://github.com/robmclarty/trellis-exec/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robmclarty/trellis-exec.git"
},
"license": "MIT",
"author": "Rob McLarty <hello@robmclarty.com> (https://robmclarty.com)",
"type": "module",
"bin": {
"trellis-exec": "./dist/cli.js"
},
"files": [
"dist/",
"agents/",
"skills/",
"hooks/",
".claude-plugin/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"lint": "npm run lint:code && npm run lint:md && npm run lint:agents",
"lint:code": "oxlint",
"lint:code:fix": "oxlint --fix",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules'",
"lint:agents": "agnix --target claude-code",
"test": "npm run test:unit && npm run test:e2e && npm run test:browser",
"test:unit": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:browser": "vitest run --config vitest.browser.config.ts",
"typecheck": "tsc --noEmit && tsc --project tsconfig.test.json --noEmit",
"docker:slim": "docker build --target slim -t trellis-exec:slim -f docker/Dockerfile .",
"docker:browser": "docker build --target browser -t trellis-exec:browser -f docker/Dockerfile .",
"prepublishOnly": "npm run build"
},
"keywords": [
"trellis",
"claude-code",
"plugin",
"task-runner",
"rlm",
"execution",
"implementation"
],
"devDependencies": {
"@types/node": "25.5.0",
"agnix": "0.16.2",
"markdownlint-cli2": "0.21.0",
"oxlint": "1.56.0",
"playwright": "1.58.2",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite": "8.0.1",
"vitest": "4.1.0"
},
"peerDependencies": {
"playwright": ">=1.40.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"dependencies": {
"zod": "4.3.6"
}
}