latticesql 0.5.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/LICENSE +182 -0
- package/README.md +1360 -0
- package/dist/cli.js +1880 -0
- package/dist/index.cjs +1514 -0
- package/dist/index.d.cts +869 -0
- package/dist/index.d.ts +869 -0
- package/dist/index.js +1472 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "latticesql",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Persistent structured memory for AI agent systems — SQLite ↔ LLM context bridge",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.mts",
|
|
13
|
+
"default": "./dist/index.mjs"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"default": "./dist/index.js"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"bin": {
|
|
22
|
+
"lattice": "./dist/cli.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"lint": "eslint src tests",
|
|
34
|
+
"lint:fix": "eslint src tests --fix",
|
|
35
|
+
"format": "prettier --write .",
|
|
36
|
+
"format:check": "prettier --check .",
|
|
37
|
+
"test": "vitest run",
|
|
38
|
+
"test:watch": "vitest",
|
|
39
|
+
"test:coverage": "vitest run --coverage",
|
|
40
|
+
"docs": "typedoc --out docs-generated src/index.ts",
|
|
41
|
+
"prepublishOnly": "npm run build && npm run typecheck && npm test"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"better-sqlite3": "^12.8.0",
|
|
45
|
+
"uuid": "^13.0.0",
|
|
46
|
+
"yaml": "^2.8.3"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@eslint/js": "^9.0.0",
|
|
50
|
+
"@types/better-sqlite3": "^7.6.12",
|
|
51
|
+
"@types/node": "^22.0.0",
|
|
52
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
53
|
+
"eslint": "^9.0.0",
|
|
54
|
+
"prettier": "^3.3.0",
|
|
55
|
+
"tsup": "^8.3.0",
|
|
56
|
+
"typedoc": "^0.26.0",
|
|
57
|
+
"typescript": "^5.6.0",
|
|
58
|
+
"typescript-eslint": "^8.0.0",
|
|
59
|
+
"vitest": "^2.1.9"
|
|
60
|
+
},
|
|
61
|
+
"keywords": [
|
|
62
|
+
"ai",
|
|
63
|
+
"agents",
|
|
64
|
+
"llm",
|
|
65
|
+
"context",
|
|
66
|
+
"sqlite",
|
|
67
|
+
"memory",
|
|
68
|
+
"sync"
|
|
69
|
+
],
|
|
70
|
+
"license": "Apache-2.0",
|
|
71
|
+
"homepage": "https://latticeSQL.com",
|
|
72
|
+
"repository": {
|
|
73
|
+
"type": "git",
|
|
74
|
+
"url": "https://github.com/automated-industries/lattice.git"
|
|
75
|
+
},
|
|
76
|
+
"bugs": {
|
|
77
|
+
"url": "https://github.com/automated-industries/lattice/issues"
|
|
78
|
+
}
|
|
79
|
+
}
|