@ai-driven-dev/cli 3.1.0 → 3.1.1
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/dist/cli.js +1035 -710
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-driven-dev/cli",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "AI-Driven Development CLI — distribute the AIDD framework across AI coding assistants",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
"build": "tsup",
|
|
36
36
|
"dev": "tsup --watch",
|
|
37
37
|
"test": "pnpm build && vitest run",
|
|
38
|
+
"test:unit": "vitest run --project=unit",
|
|
39
|
+
"test:integration": "vitest run --project=integration",
|
|
40
|
+
"test:e2e": "pnpm build && vitest run --project=e2e",
|
|
38
41
|
"test:watch": "vitest",
|
|
39
42
|
"typecheck": "tsc --noEmit",
|
|
40
43
|
"lint": "biome check .",
|