@danielsimonjr/memoryjs 1.1.0 → 1.2.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/package.json CHANGED
@@ -1,75 +1,75 @@
1
- {
2
- "name": "@danielsimonjr/memoryjs",
3
- "version": "1.1.0",
4
- "description": "Core knowledge graph library with search, storage, and graph algorithms",
5
- "type": "module",
6
- "main": "dist/index.cjs",
7
- "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js",
13
- "require": "./dist/index.cjs"
14
- }
15
- },
16
- "bin": {
17
- "memoryjs": "./dist/index.js"
18
- },
19
- "files": [
20
- "dist",
21
- "README.md",
22
- "LICENSE"
23
- ],
24
- "scripts": {
25
- "build": "tsup",
26
- "build:watch": "tsup --watch",
27
- "build:tsc": "tsc",
28
- "typecheck": "tsc --noEmit",
29
- "test": "vitest run",
30
- "test:watch": "vitest",
31
- "test:coverage": "vitest run --coverage",
32
- "clean": "rimraf dist",
33
- "prepublishOnly": "npm run clean && npm run build && npm run test",
34
- "tools:install": "cd tools/chunking-for-files && npm install && cd ../compress-for-context && npm install && cd ../create-dependency-graph && npm install && cd ../migrate-from-jsonl-to-sqlite && npm install",
35
- "tools:build": "cd tools/chunking-for-files && npm run build && cd ../compress-for-context && npm run build && cd ../create-dependency-graph && npm run build && cd ../migrate-from-jsonl-to-sqlite && npm run build"
36
- },
37
- "keywords": [
38
- "knowledge-graph",
39
- "graph-database",
40
- "entity-management",
41
- "search",
42
- "sqlite",
43
- "jsonl",
44
- "semantic-search",
45
- "hybrid-search"
46
- ],
47
- "author": "Daniel Simon Jr",
48
- "license": "MIT",
49
- "repository": {
50
- "type": "git",
51
- "url": "git+https://github.com/danielsimonjr/memoryjs.git"
52
- },
53
- "bugs": {
54
- "url": "https://github.com/danielsimonjr/memoryjs/issues"
55
- },
56
- "homepage": "https://github.com/danielsimonjr/memoryjs#readme",
57
- "engines": {
58
- "node": ">=18.0.0"
59
- },
60
- "dependencies": {
61
- "@danielsimonjr/workerpool": "^10.0.1",
62
- "async-mutex": "^0.5.0",
63
- "better-sqlite3": "^11.7.0",
64
- "zod": "^3.24.1"
65
- },
66
- "devDependencies": {
67
- "@types/better-sqlite3": "^7.6.12",
68
- "@types/node": "^22.10.5",
69
- "@vitest/coverage-v8": "^4.0.16",
70
- "rimraf": "^6.0.1",
71
- "tsup": "^8.3.5",
72
- "typescript": "^5.7.2",
73
- "vitest": "^4.0.16"
74
- }
75
- }
1
+ {
2
+ "name": "@danielsimonjr/memoryjs",
3
+ "version": "1.2.0",
4
+ "description": "Core knowledge graph library with search, storage, and graph algorithms",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "bin": {
17
+ "memoryjs": "./dist/index.js"
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "README.md",
22
+ "LICENSE"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "build:watch": "tsup --watch",
27
+ "build:tsc": "tsc",
28
+ "typecheck": "tsc --noEmit",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest",
31
+ "test:coverage": "vitest run --coverage",
32
+ "clean": "rimraf dist",
33
+ "prepublishOnly": "npm run clean && npm run build && npm run test",
34
+ "tools:install": "cd tools/chunking-for-files && npm install && cd ../compress-for-context && npm install && cd ../create-dependency-graph && npm install && cd ../migrate-from-jsonl-to-sqlite && npm install",
35
+ "tools:build": "cd tools/chunking-for-files && npm run build && cd ../compress-for-context && npm run build && cd ../create-dependency-graph && npm run build && cd ../migrate-from-jsonl-to-sqlite && npm run build"
36
+ },
37
+ "keywords": [
38
+ "knowledge-graph",
39
+ "graph-database",
40
+ "entity-management",
41
+ "search",
42
+ "sqlite",
43
+ "jsonl",
44
+ "semantic-search",
45
+ "hybrid-search"
46
+ ],
47
+ "author": "Daniel Simon Jr",
48
+ "license": "MIT",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "git+https://github.com/danielsimonjr/memoryjs.git"
52
+ },
53
+ "bugs": {
54
+ "url": "https://github.com/danielsimonjr/memoryjs/issues"
55
+ },
56
+ "homepage": "https://github.com/danielsimonjr/memoryjs#readme",
57
+ "engines": {
58
+ "node": ">=18.0.0"
59
+ },
60
+ "dependencies": {
61
+ "@danielsimonjr/workerpool": "^10.0.1",
62
+ "async-mutex": "^0.5.0",
63
+ "better-sqlite3": "^11.7.0",
64
+ "zod": "^3.24.1"
65
+ },
66
+ "devDependencies": {
67
+ "@types/better-sqlite3": "^7.6.12",
68
+ "@types/node": "^22.10.5",
69
+ "@vitest/coverage-v8": "^4.0.16",
70
+ "rimraf": "^6.0.1",
71
+ "tsup": "^8.3.5",
72
+ "typescript": "^5.7.2",
73
+ "vitest": "^4.0.16"
74
+ }
75
+ }