linksee-memory 0.1.4 → 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.
package/package.json CHANGED
@@ -1,71 +1,82 @@
1
- {
2
- "name": "linksee-memory",
3
- "version": "0.1.4",
4
- "mcpName": "io.github.michielinksee/linksee-memory",
5
- "description": "Local-first agent memory MCP — cross-agent brain with 6-layer structured memory + token-saving file diff cache",
6
- "type": "module",
7
- "bin": {
8
- "linksee-memory": "dist/mcp/server.js",
9
- "linksee-memory-import": "dist/bin/import-sessions.js",
10
- "linksee-memory-sync": "dist/bin/sync-session.js",
11
- "linksee-memory-install-skill": "dist/bin/install-skill.js",
12
- "linksee-memory-stats": "dist/bin/stats.js"
13
- },
14
- "main": "./dist/mcp/server.js",
15
- "files": [
16
- "dist/**/*.js",
17
- "dist/**/*.d.ts",
18
- "dist/db/schema.sql",
19
- "dist/skill/SKILL.md",
20
- "README.md",
21
- "LICENSE"
22
- ],
23
- "scripts": {
24
- "build": "tsc && node -e \"require('fs').copyFileSync('src/db/schema.sql','dist/db/schema.sql'); require('fs').mkdirSync('dist/skill',{recursive:true}); require('fs').copyFileSync('src/skill/SKILL.md','dist/skill/SKILL.md')\"",
25
- "start": "node dist/mcp/server.js",
26
- "dev": "tsx src/mcp/server.ts",
27
- "migrate": "node dist/db/migrate.js",
28
- "migrate:dev": "tsx src/db/migrate.ts",
29
- "prepublishOnly": "npm run build"
30
- },
31
- "keywords": [
32
- "mcp",
33
- "model-context-protocol",
34
- "memory",
35
- "agent",
36
- "agent-memory",
37
- "claude",
38
- "claude-code",
39
- "cursor",
40
- "chatgpt",
41
- "sqlite",
42
- "local-first",
43
- "token-savings",
44
- "cross-agent"
45
- ],
46
- "author": "Synapse Arrows PTE. LTD.",
47
- "license": "MIT",
48
- "homepage": "https://github.com/michielinksee/linksee-memory",
49
- "repository": {
50
- "type": "git",
51
- "url": "git+https://github.com/michielinksee/linksee-memory.git"
52
- },
53
- "bugs": {
54
- "url": "https://github.com/michielinksee/linksee-memory/issues"
55
- },
56
- "dependencies": {
57
- "@babel/parser": "^7.25.0",
58
- "@modelcontextprotocol/sdk": "^1.0.0",
59
- "better-sqlite3": "^11.3.0",
60
- "sqlite-vec": "^0.1.6"
61
- },
62
- "devDependencies": {
63
- "@types/better-sqlite3": "^7.6.11",
64
- "@types/node": "^22.7.0",
65
- "tsx": "^4.19.0",
66
- "typescript": "^5.6.0"
67
- },
68
- "engines": {
69
- "node": ">=20"
70
- }
71
- }
1
+ {
2
+ "name": "linksee-memory",
3
+ "version": "0.3.0",
4
+ "mcpName": "io.github.michielinksee/linksee-memory",
5
+ "description": "Local-first agent memory MCP — cross-agent brain with 6-layer structured memory + token-saving file diff cache",
6
+ "type": "module",
7
+ "bin": {
8
+ "linksee-memory": "dist/mcp/server.js",
9
+ "linksee-memory-import": "dist/bin/import-sessions.js",
10
+ "linksee-memory-sync": "dist/bin/sync-session.js",
11
+ "linksee-memory-install-skill": "dist/bin/install-skill.js",
12
+ "linksee-memory-stats": "dist/bin/stats.js"
13
+ },
14
+ "main": "./dist/mcp/server.js",
15
+ "files": [
16
+ "dist/**/*.js",
17
+ "dist/**/*.d.ts",
18
+ "dist/db/schema.sql",
19
+ "dist/skill/SKILL.md",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsc && node -e \"require('fs').copyFileSync('src/db/schema.sql','dist/db/schema.sql'); require('fs').mkdirSync('dist/skill',{recursive:true}); require('fs').copyFileSync('src/skill/SKILL.md','dist/skill/SKILL.md')\"",
25
+ "start": "node dist/mcp/server.js",
26
+ "dev": "tsx src/mcp/server.ts",
27
+ "migrate": "node dist/db/migrate.js",
28
+ "migrate:dev": "tsx src/db/migrate.ts",
29
+ "prepublishOnly": "npm run build"
30
+ },
31
+ "keywords": [
32
+ "mcp",
33
+ "model-context-protocol",
34
+ "memory",
35
+ "agent",
36
+ "agent-memory",
37
+ "claude",
38
+ "claude-code",
39
+ "cursor",
40
+ "chatgpt",
41
+ "sqlite",
42
+ "local-first",
43
+ "token-savings",
44
+ "cross-agent"
45
+ ],
46
+ "author": "Synapse Arrows PTE. LTD.",
47
+ "license": "MIT",
48
+ "homepage": "https://github.com/michielinksee/linksee-memory",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "git+https://github.com/michielinksee/linksee-memory.git"
52
+ },
53
+ "bugs": {
54
+ "url": "https://github.com/michielinksee/linksee-memory/issues"
55
+ },
56
+ "dependencies": {
57
+ "@babel/parser": "^7.25.0",
58
+ "@modelcontextprotocol/sdk": "^1.0.0",
59
+ "better-sqlite3": "^12.9.0",
60
+ "sqlite-vec": "^0.1.6"
61
+ },
62
+ "devDependencies": {
63
+ "@types/better-sqlite3": "^7.6.11",
64
+ "@types/node": "^22.7.0",
65
+ "tsx": "^4.19.0",
66
+ "typescript": "^5.6.0"
67
+ },
68
+ "engines": {
69
+ "node": ">=20"
70
+ },
71
+ "overrides": {
72
+ "ip-address": "^10.2.0"
73
+ },
74
+ "pnpm": {
75
+ "onlyBuiltDependencies": [
76
+ "better-sqlite3"
77
+ ],
78
+ "overrides": {
79
+ "ip-address": "^10.2.0"
80
+ }
81
+ }
82
+ }