@wbern/claude-instructions 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +15 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wbern/claude-instructions",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "TDD workflow commands for Claude Code CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./bin/cli.js",
|
|
@@ -26,6 +26,19 @@
|
|
|
26
26
|
],
|
|
27
27
|
"author": "wbern",
|
|
28
28
|
"license": "MIT",
|
|
29
|
+
"scripts": {
|
|
30
|
+
"clean": "rm -rf downloads",
|
|
31
|
+
"clean:dev": "rm -rf .claude/commands",
|
|
32
|
+
"build": "bash scripts/build.sh",
|
|
33
|
+
"build:dev": "bash scripts/build-dev.sh",
|
|
34
|
+
"build:cli": "tsup",
|
|
35
|
+
"generate": "tsx scripts/cli-generator.ts",
|
|
36
|
+
"test": "vitest run",
|
|
37
|
+
"test:watch": "vitest",
|
|
38
|
+
"typecheck": "tsc --noEmit",
|
|
39
|
+
"prepublishOnly": "bash scripts/check-publish.sh && pnpm build && pnpm build:cli",
|
|
40
|
+
"prepare": "husky"
|
|
41
|
+
},
|
|
29
42
|
"devDependencies": {
|
|
30
43
|
"@types/fs-extra": "^11.0.4",
|
|
31
44
|
"@types/node": "^24.10.1",
|
|
@@ -50,16 +63,5 @@
|
|
|
50
63
|
"@semantic-release/npm",
|
|
51
64
|
"@semantic-release/github"
|
|
52
65
|
]
|
|
53
|
-
},
|
|
54
|
-
"scripts": {
|
|
55
|
-
"clean": "rm -rf downloads",
|
|
56
|
-
"clean:dev": "rm -rf .claude/commands",
|
|
57
|
-
"build": "bash scripts/build.sh",
|
|
58
|
-
"build:dev": "bash scripts/build-dev.sh",
|
|
59
|
-
"build:cli": "tsup",
|
|
60
|
-
"generate": "tsx scripts/cli-generator.ts",
|
|
61
|
-
"test": "vitest run",
|
|
62
|
-
"test:watch": "vitest",
|
|
63
|
-
"typecheck": "tsc --noEmit"
|
|
64
66
|
}
|
|
65
|
-
}
|
|
67
|
+
}
|