@unerr-ai/unerr 0.2.12 → 0.3.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.
Files changed (3) hide show
  1. package/dist/cli.js +23387 -37888
  2. package/dist/ui/index.html +6 -6
  3. package/package.json +25 -37
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unerr-ai/unerr",
3
- "version": "0.2.12",
3
+ "version": "0.3.0",
4
4
  "mcpName": "io.github.unerr-ai/unerr",
5
5
  "description": "Your AI agent has read your codebase but still can't safely change it. unerr is a local guardrail that hands the agent the call graph and your rules at the moment it edits.",
6
6
  "repository": {
@@ -14,23 +14,6 @@
14
14
  "exports": {
15
15
  ".": "./dist/cli.js"
16
16
  },
17
- "scripts": {
18
- "build": "pnpm run build:ui && pnpm run build:cli",
19
- "build:cli": "tsup src/entrypoints/cli.ts --format esm --target node20 --dts --no-splitting --external cozo-node --external better-sqlite3",
20
- "dev": "tsx watch src/entrypoints/cli.ts",
21
- "test": "vitest",
22
- "test:run": "vitest run < /dev/null",
23
- "dev:ui": "vite",
24
- "build:ui": "vite build && node scripts/check-ui-bundle.mjs",
25
- "typecheck:ui": "tsc --project src/ui/tsconfig.json",
26
- "lint": "biome check src/",
27
- "lint:fix": "biome check --write src/",
28
- "format": "biome format --write src/",
29
- "typecheck": "tsc --noEmit",
30
- "test:local-mode": "vitest run src/__tests__/local-mode-offline.test.ts src/__tests__/network-boundary.test.ts",
31
- "check:tool-budget": "tsx scripts/check-tool-budget.ts",
32
- "gen:docs": "tsx scripts/gen-docs-reference.ts"
33
- },
34
17
  "dependencies": {
35
18
  "@clack/prompts": "^1.2.0",
36
19
  "@hono/node-server": "^2.0.1",
@@ -109,23 +92,6 @@
109
92
  "!dist/ui/prototype-sandbox/**"
110
93
  ],
111
94
  "license": "Apache-2.0",
112
- "pnpm": {
113
- "onlyBuiltDependencies": [
114
- "@biomejs/biome",
115
- "@parcel/watcher",
116
- "cozo-node",
117
- "esbuild",
118
- "msgpackr-extract"
119
- ],
120
- "overrides": {
121
- "fast-uri@<3.1.2": ">=3.1.2",
122
- "ip-address@<10.1.1": ">=10.1.1",
123
- "postcss@<8.5.10": ">=8.5.10",
124
- "qs@<6.15.2": ">=6.15.2",
125
- "tar@<7.5.11": "^7.5.11",
126
- "ws@<8.20.1": "^8.20.1"
127
- }
128
- },
129
95
  "keywords": [
130
96
  "mcp",
131
97
  "mcp-server",
@@ -147,5 +113,27 @@
147
113
  "ast",
148
114
  "static-analysis",
149
115
  "typescript"
150
- ]
151
- }
116
+ ],
117
+ "scripts": {
118
+ "build": "pnpm run build:ui && pnpm run build:cli",
119
+ "build:cli": "tsup src/entrypoints/cli.ts --format esm --target node20 --dts --no-splitting --external cozo-node --external better-sqlite3",
120
+ "dev": "tsx watch src/entrypoints/cli.ts",
121
+ "test": "vitest",
122
+ "test:run": "vitest run < /dev/null",
123
+ "dev:ui": "vite",
124
+ "build:ui": "vite build && node scripts/check-ui-bundle.mjs",
125
+ "typecheck:ui": "tsc --project src/ui/tsconfig.json",
126
+ "lint": "biome check src/",
127
+ "lint:fix": "biome check --write src/",
128
+ "format": "biome format --write src/",
129
+ "typecheck": "tsc --noEmit",
130
+ "test:local-mode": "vitest run src/__tests__/local-mode-offline.test.ts src/__tests__/network-boundary.test.ts",
131
+ "check:tool-budget": "tsx scripts/check-tool-budget.ts",
132
+ "check:native": "node scripts/check-native-modules.mjs",
133
+ "gen:docs": "tsx scripts/gen-docs-reference.ts",
134
+ "dev:config": "node scripts/dev-config.mjs",
135
+ "dev:entitlement": "node scripts/dev-entitlement.mjs",
136
+ "dev:mcp-probe": "node scripts/dev-mcp-probe.mjs",
137
+ "dev:tier-multirepo": "bash scripts/dev-tier-multirepo-live.sh"
138
+ }
139
+ }