@codyswann/lisa 2.23.1 → 2.23.2
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/harper-fabric/package-lisa/package.lisa.json +24 -21
- package/package.json +2 -2
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.codex-plugin/plugin.json +1 -1
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
"force": {
|
|
3
3
|
"scripts": {
|
|
4
4
|
"bootstrap": "bash scripts/bootstrap.sh",
|
|
5
|
-
"build": "tsc && node dist/src/build/build.js",
|
|
6
5
|
"typecheck": "tsc --noEmit",
|
|
7
6
|
"test": "vitest run",
|
|
8
7
|
"test:cov": "vitest run --coverage",
|
|
@@ -17,25 +16,6 @@
|
|
|
17
16
|
"start": "harperdb start",
|
|
18
17
|
"stop": "harperdb stop",
|
|
19
18
|
"status": "harperdb status",
|
|
20
|
-
"seed": "bun run build && node dist/src/scripts/seed.js",
|
|
21
|
-
"verify": "bun run build && node dist/src/scripts/verify.js",
|
|
22
|
-
"seed:rest": "bun run build && node dist/src/scripts/seed_via_rest.js",
|
|
23
|
-
"verify:rest": "bun run build && node dist/src/scripts/verify_via_rest.js",
|
|
24
|
-
"preview": "bun run build && node dist/src/scripts/preview_feed.js",
|
|
25
|
-
"dev:server": "bun run build && node dist/src/scripts/dev_server.js",
|
|
26
|
-
"deploy": "bun run build && node dist/src/scripts/deploy.js",
|
|
27
|
-
"smoke": "bun run build && node dist/tests/web_smoke.js",
|
|
28
|
-
"smoke:brokercheck": "bun run build && node dist/tests/brokercheck_web_smoke.js",
|
|
29
|
-
"token": "bun run build && node dist/src/scripts/get_token.js",
|
|
30
|
-
"crawl:wpjson": "bun run build && node dist/src/scripts/crawl_via_wpjson.js",
|
|
31
|
-
"crawl:html": "bun run build && node dist/src/scripts/crawl_html.js",
|
|
32
|
-
"crawl:playwright": "bun run build && node dist/src/scripts/crawl_playwright.js",
|
|
33
|
-
"extract:fields": "bun run build && node dist/src/scripts/extract_fields.js",
|
|
34
|
-
"extract:helper": "bun run build && node dist/src/scripts/extract_helper.js",
|
|
35
|
-
"ingest": "bun run build && node dist/src/scripts/ingest.js",
|
|
36
|
-
"load:extractions": "bun run build && node dist/src/scripts/load_extractions.js",
|
|
37
|
-
"brokercheck": "bun run build && node dist/src/scripts/fetch_brokercheck.js",
|
|
38
|
-
"brokercheck:crawl": "bun run build && node dist/src/scripts/brokercheck_crawl_all.js",
|
|
39
19
|
"reset": "harperdb stop || true; [ -n \"$HOME\" ] && rm -rf \"$HOME/.harperdb\" && bun run bootstrap && bun run seed && bun run verify",
|
|
40
20
|
"prepare": "husky install || true"
|
|
41
21
|
},
|
|
@@ -45,7 +25,6 @@
|
|
|
45
25
|
},
|
|
46
26
|
"devDependencies": {
|
|
47
27
|
"@ast-grep/cli": "^0.40.4",
|
|
48
|
-
"@codyswann/lisa": "^2.19.0",
|
|
49
28
|
"@commitlint/cli": "^20.3.1",
|
|
50
29
|
"@commitlint/config-conventional": "^20.3.1",
|
|
51
30
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
@@ -90,5 +69,29 @@
|
|
|
90
69
|
"@codyswann/lisa",
|
|
91
70
|
"@sentry/cli"
|
|
92
71
|
]
|
|
72
|
+
},
|
|
73
|
+
"defaults": {
|
|
74
|
+
"scripts": {
|
|
75
|
+
"build": "tsc && node dist/src/build/build.js",
|
|
76
|
+
"seed": "bun run build && node dist/src/scripts/seed.js",
|
|
77
|
+
"verify": "bun run build && node dist/src/scripts/verify.js",
|
|
78
|
+
"seed:rest": "bun run build && node dist/src/scripts/seed_via_rest.js",
|
|
79
|
+
"verify:rest": "bun run build && node dist/src/scripts/verify_via_rest.js",
|
|
80
|
+
"preview": "bun run build && node dist/src/scripts/preview_feed.js",
|
|
81
|
+
"dev:server": "bun run build && node dist/src/scripts/dev_server.js",
|
|
82
|
+
"deploy": "bun run build && node dist/src/scripts/deploy.js",
|
|
83
|
+
"smoke": "bun run build && node dist/tests/web_smoke.js",
|
|
84
|
+
"smoke:brokercheck": "bun run build && node dist/tests/brokercheck_web_smoke.js",
|
|
85
|
+
"token": "bun run build && node dist/src/scripts/get_token.js",
|
|
86
|
+
"crawl:wpjson": "bun run build && node dist/src/scripts/crawl_via_wpjson.js",
|
|
87
|
+
"crawl:html": "bun run build && node dist/src/scripts/crawl_html.js",
|
|
88
|
+
"crawl:playwright": "bun run build && node dist/src/scripts/crawl_playwright.js",
|
|
89
|
+
"extract:fields": "bun run build && node dist/src/scripts/extract_fields.js",
|
|
90
|
+
"extract:helper": "bun run build && node dist/src/scripts/extract_helper.js",
|
|
91
|
+
"ingest": "bun run build && node dist/src/scripts/ingest.js",
|
|
92
|
+
"load:extractions": "bun run build && node dist/src/scripts/load_extractions.js",
|
|
93
|
+
"brokercheck": "bun run build && node dist/src/scripts/fetch_brokercheck.js",
|
|
94
|
+
"brokercheck:crawl": "bun run build && node dist/src/scripts/brokercheck_crawl_all.js"
|
|
95
|
+
}
|
|
93
96
|
}
|
|
94
97
|
}
|
package/package.json
CHANGED
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"lodash": ">=4.18.1"
|
|
83
83
|
},
|
|
84
84
|
"name": "@codyswann/lisa",
|
|
85
|
-
"version": "2.23.
|
|
85
|
+
"version": "2.23.2",
|
|
86
86
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
87
87
|
"main": "dist/index.js",
|
|
88
88
|
"exports": {
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
"vitest": "^4.1.0"
|
|
200
200
|
},
|
|
201
201
|
"devDependencies": {
|
|
202
|
-
"@codyswann/lisa": "^2.
|
|
202
|
+
"@codyswann/lisa": "^2.23.1",
|
|
203
203
|
"@types/js-yaml": "^4.0.9",
|
|
204
204
|
"eslint-plugin-oxlint": "^1.62.0",
|
|
205
205
|
"js-yaml": "^4.1.1",
|