wabachi 0.1.0 → 0.2.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/README.md +1 -1
- package/dist/architecture/canon/codec.js +26 -2
- package/dist/architecture/canon/codec.js.map +1 -1
- package/dist/architecture/canon/elements.d.ts +8 -1
- package/dist/architecture/canon/elements.js +56 -1
- package/dist/architecture/canon/elements.js.map +1 -1
- package/dist/architecture/canon/validate.d.ts +1 -1
- package/dist/architecture/canon/validate.js +37 -1
- package/dist/architecture/canon/validate.js.map +1 -1
- package/dist/architecture/canon/views.d.ts +5 -0
- package/dist/architecture/canon/views.js +4 -0
- package/dist/architecture/canon/views.js.map +1 -1
- package/dist/architecture/documentation/project.js +1 -1
- package/dist/architecture/documentation/project.js.map +1 -1
- package/dist/architecture/projection/structurizr-export.js +5 -4
- package/dist/architecture/projection/structurizr-export.js.map +1 -1
- package/dist/architecture/projection/structurizr.d.ts +1 -1
- package/dist/architecture/projection/structurizr.js +156 -54
- package/dist/architecture/projection/structurizr.js.map +1 -1
- package/dist/cli.js +1 -1
- package/package.json +17 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wabachi",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Repository analysis and Architecture Canon tooling for deterministic codebase understanding.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,21 +11,6 @@
|
|
|
11
11
|
"README.md",
|
|
12
12
|
"LICENSE"
|
|
13
13
|
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "tsc -p tsconfig.build.json && node scripts/chmod-bin.mjs",
|
|
16
|
-
"start": "node dist/index.js",
|
|
17
|
-
"test": "node --test --import tsx src/**/*.test.ts scripts/**/*.test.mjs",
|
|
18
|
-
"typecheck": "tsc --noEmit",
|
|
19
|
-
"lint": "eslint 'src/**/*.ts' 'scripts/**/*.mjs' 'eslint.config.mjs'",
|
|
20
|
-
"format": "prettier --write .",
|
|
21
|
-
"format:check": "prettier --check .",
|
|
22
|
-
"smoke-test": "node scripts/smoke-test.mjs",
|
|
23
|
-
"test:package": "pnpm run build && node scripts/run-package-suite.mjs",
|
|
24
|
-
"governance:actions": "node scripts/validate-action-pins.mjs",
|
|
25
|
-
"verify": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm test && pnpm run governance:actions && pnpm run test:package",
|
|
26
|
-
"prepack": "pnpm run build",
|
|
27
|
-
"prepublishOnly": "pnpm run typecheck && pnpm test"
|
|
28
|
-
},
|
|
29
14
|
"dependencies": {
|
|
30
15
|
"@sourcegraph/scip-typescript": "0.4.0",
|
|
31
16
|
"typescript": "^6.0.3"
|
|
@@ -39,9 +24,8 @@
|
|
|
39
24
|
"typescript-eslint": "8.67.0"
|
|
40
25
|
},
|
|
41
26
|
"engines": {
|
|
42
|
-
"node": ">=
|
|
27
|
+
"node": ">=24"
|
|
43
28
|
},
|
|
44
|
-
"packageManager": "pnpm@11.18.0",
|
|
45
29
|
"publishConfig": {
|
|
46
30
|
"access": "public",
|
|
47
31
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -68,5 +52,18 @@
|
|
|
68
52
|
"ai-agents"
|
|
69
53
|
],
|
|
70
54
|
"main": "dist/index.js",
|
|
71
|
-
"types": "./dist/index.d.ts"
|
|
72
|
-
|
|
55
|
+
"types": "./dist/index.d.ts",
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsc -p tsconfig.build.json && node scripts/chmod-bin.mjs",
|
|
58
|
+
"start": "node dist/index.js",
|
|
59
|
+
"test": "node --test --import tsx src/**/*.test.ts scripts/**/*.test.mjs",
|
|
60
|
+
"typecheck": "tsc --noEmit",
|
|
61
|
+
"lint": "eslint 'src/**/*.ts' 'scripts/**/*.mjs' 'eslint.config.mjs'",
|
|
62
|
+
"format": "prettier --write .",
|
|
63
|
+
"format:check": "prettier --check .",
|
|
64
|
+
"smoke-test": "node scripts/smoke-test.mjs",
|
|
65
|
+
"test:package": "pnpm run build && node scripts/run-package-suite.mjs",
|
|
66
|
+
"governance:actions": "node scripts/validate-action-pins.mjs",
|
|
67
|
+
"verify": "pnpm run format:check && pnpm run lint && pnpm run typecheck && pnpm test && pnpm run governance:actions && pnpm run test:package"
|
|
68
|
+
}
|
|
69
|
+
}
|