@vpxa/aikit 0.1.27 → 0.1.29

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 (2) hide show
  1. package/bin/aikit.mjs +0 -0
  2. package/package.json +17 -19
package/bin/aikit.mjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vpxa/aikit",
3
- "version": "0.1.27",
3
+ "version": "0.1.29",
4
4
  "type": "module",
5
5
  "description": "Local-first AI developer toolkit — knowledge base, code analysis, context management, and developer tools for LLM agents",
6
6
  "license": "MIT",
@@ -42,22 +42,6 @@
42
42
  "bin": {
43
43
  "aikit": "./bin/aikit.mjs"
44
44
  },
45
- "scripts": {
46
- "build": "node scripts/build.mjs",
47
- "typecheck": "tsc -b tsconfig.build.json --emitDeclarationOnly",
48
- "clean": "turbo run clean && rimraf --glob node_modules \"packages/*/node_modules\"",
49
- "lint": "biome check .",
50
- "lint:fix": "biome check --write .",
51
- "format": "biome format --write .",
52
- "start": "node packages/server/dist/index.js",
53
- "start:http": "node packages/server/dist/index.js --transport http",
54
- "test": "vitest run",
55
- "prepublishOnly": "pnpm build",
56
- "release": "node scripts/release.mjs",
57
- "release:dry": "node scripts/release.mjs --dry-run",
58
- "nodeprune": "pnpm clean && pnpm store prune && pnpm -s dlx npkill -D -y",
59
- "test:watch": "vitest"
60
- },
61
45
  "dependencies": {
62
46
  "@huggingface/transformers": "^3.x",
63
47
  "@lancedb/lancedb": "^0.x",
@@ -93,5 +77,19 @@
93
77
  "engines": {
94
78
  "node": ">=18"
95
79
  },
96
- "packageManager": "pnpm@10.33.0"
97
- }
80
+ "scripts": {
81
+ "build": "node scripts/build.mjs",
82
+ "typecheck": "tsc -b tsconfig.build.json --emitDeclarationOnly",
83
+ "clean": "turbo run clean && rimraf --glob node_modules \"packages/*/node_modules\"",
84
+ "lint": "biome check .",
85
+ "lint:fix": "biome check --write .",
86
+ "format": "biome format --write .",
87
+ "start": "node packages/server/dist/index.js",
88
+ "start:http": "node packages/server/dist/index.js --transport http",
89
+ "test": "vitest run",
90
+ "release": "node scripts/release.mjs",
91
+ "release:dry": "node scripts/release.mjs --dry-run",
92
+ "nodeprune": "pnpm clean && pnpm store prune && pnpm -s dlx npkill -D -y",
93
+ "test:watch": "vitest"
94
+ }
95
+ }