@easbot/codebase 0.1.11 → 0.1.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easbot/codebase",
3
- "version": "0.1.11",
3
+ "version": "0.1.14",
4
4
  "description": "Code Knowledge Graph SDK for EASBot - Property Graph model for code indexing and querying with Tree-sitter parsing, FTS hybrid search, and incremental updates",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -14,23 +14,6 @@
14
14
  },
15
15
  "./package.json": "./package.json"
16
16
  },
17
- "scripts": {
18
- "dev": "tsup --watch --env.NODE_ENV development",
19
- "build": "tsup --env.NODE_ENV production",
20
- "test": "vitest",
21
- "test:run": "vitest run",
22
- "lint": "biome check .",
23
- "lint:fix": "biome check --write .",
24
- "lint:report": "biome check --reporter=summary .",
25
- "format": "biome format .",
26
- "format:fix": "biome format --write .",
27
- "type-check": "tsc --noEmit",
28
- "clean": "npx rimraf dist node_modules",
29
- "prepare": "echo norun",
30
- "prepublishOnly": "pnpm build",
31
- "publish:npm": "bash scripts/publish.sh",
32
- "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
33
- },
34
17
  "keywords": [
35
18
  "easbot",
36
19
  "code-knowledge-graph",
@@ -65,9 +48,6 @@
65
48
  "dependencies": {
66
49
  "@ai-sdk/provider": "^3.0.8",
67
50
  "@ai-sdk/provider-utils": "^4.0.21",
68
- "@easbot/local-model-sdk": "workspace:*",
69
- "@easbot/types": "workspace:*",
70
- "@easbot/utils": "workspace:*",
71
51
  "@tree-sitter-grammars/tree-sitter-zig": "^1.1.2",
72
52
  "@tursodatabase/database": "0.5.1",
73
53
  "ai": "^6.0.136",
@@ -86,9 +66,12 @@
86
66
  "tree-sitter-rust": "^0.24.0",
87
67
  "tree-sitter-scala": "^0.24.0",
88
68
  "tree-sitter-typescript": "^0.23.2",
89
- "web-tree-sitter": "^0.26.7",
69
+ "web-tree-sitter": "^0.25.0",
90
70
  "xdg-basedir": "^5.1.0",
91
- "zod": "^4.3.6"
71
+ "zod": "^4.3.6",
72
+ "@easbot/local-model-sdk": "0.1.14",
73
+ "@easbot/utils": "0.1.14",
74
+ "@easbot/types": "0.1.14"
92
75
  },
93
76
  "devDependencies": {
94
77
  "@biomejs/biome": "^2.4.8",
@@ -105,5 +88,20 @@
105
88
  },
106
89
  "publishConfig": {
107
90
  "access": "public"
91
+ },
92
+ "scripts": {
93
+ "dev": "tsup --watch --env.NODE_ENV development",
94
+ "build": "tsup --env.NODE_ENV production",
95
+ "test": "vitest",
96
+ "test:run": "vitest run",
97
+ "lint": "biome check .",
98
+ "lint:fix": "biome check --write .",
99
+ "lint:report": "biome check --reporter=summary .",
100
+ "format": "biome format .",
101
+ "format:fix": "biome format --write .",
102
+ "type-check": "tsc --noEmit",
103
+ "clean": "npx rimraf dist node_modules",
104
+ "publish:npm": "bash scripts/publish.sh",
105
+ "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
108
106
  }
109
- }
107
+ }