-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.03 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@wbern/agent-instructions",
"version": "4.0.0",
"description": "TDD workflow commands for AI coding agents (Claude Code, OpenCode)",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"bin": {
"agent-instructions": "./bin/cli.js"
},
"files": [
"bin",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wbern/agent-instructions.git"
},
"homepage": "https://github.com/wbern/agent-instructions#readme",
"bugs": {
"url": "https://github.com/wbern/agent-instructions/issues"
},
"keywords": [
"agent-instructions",
"opencode",
"claude",
"claude-code",
"tdd",
"test-driven-development",
"ai",
"cli"
],
"author": "wbern",
"license": "MIT",
"scripts": {
"build": "pnpm build:readme && pnpm build:commands && pnpm exec markdownlint --fix .claude/commands/*.md .opencode/commands/*.md",
"build:readme": "tsx scripts/build.ts",
"build:commands": "pnpm build:cli && rm -f .claude/commands/*.md && rm -rf .claude/skills && rm -f .opencode/commands/*.md && rm -rf .opencode/skills && node bin/cli.js --scope=project --agent=both --flags=beads,no-plan-files --skills=tdd.md --include-contrib-commands --overwrite",
"build:cli": "tsup",
"test:manual": "pnpm build:cli && TMPDIR=$(mktemp -d) && pnpm pack --pack-destination $TMPDIR && cd $TMPDIR && tar -xzf *.tgz && cd package && pnpm i && node bin/cli.js",
"test:quick-manual": "pnpm build:cli && node bin/cli.js",
"generate": "tsx scripts/cli-generator.ts",
"pretest": "pnpm build:cli",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"knip": "knip",
"duplication-check": "jscpd",
"prepublishOnly": "bash scripts/check-publish.sh && pnpm build && pnpm build:cli",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.8.0",
"@vitest/coverage-v8": "^4.1.6",
"diff": "^9.0.0",
"husky": "^9.1.7",
"jscpd": "^4.2.0",
"knip": "^6.13.1",
"lint-staged": "^17.0.4",
"markdownlint-cli": "^0.48.0",
"picocolors": "^1.1.1",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"fs-extra": "^11.3.5",
"markdownlint": "^0.40.0",
"valibot": "^1.4.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true,
"provenance": true
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version}"
}
]
]
}
}