-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) Β· 6.28 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) Β· 6.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "memmy-agent",
"version": "1.1.1",
"private": true,
"type": "module",
"description": "Local-first agent memory substrate with desktop and CLI surfaces.",
"workspaces": [
"Migrations",
"Memory",
"App/backend/local-api-contracts",
"App/backend",
"App/frontend/*",
"App/shell/desktop/interface",
"App/shell/*"
],
"scripts": {
"version:sync": "node scripts/sync-project-version.mjs",
"version:check": "node scripts/sync-project-version.mjs --check",
"prebuild": "npm run version:sync",
"pretypecheck": "npm run version:sync",
"pretest": "npm run version:sync",
"dev": "npm run memory:dev",
"dev:desktop": "concurrently -k -n renderer,desktop -c cyan,magenta \"npm run dev -w @memmy/frontend-desktop -- --host 127.0.0.1\" \"wait-on http://127.0.0.1:19000 && npm run dev -w @memmy/desktop\"",
"build": "npm run memory:build && npm run workspace:build",
"lint": "npm run memory:lint && npm run workspace:lint",
"typecheck": "npm run memory:lint && npm run workspace:typecheck",
"test": "npm run test:release-workflow && npm run test:packaging-guards && npm run memory:test && npm run workspace:test && npm run agent:test:tui-cursor",
"test:release-workflow": "vitest run tests/release-workflow.test.ts tests/oss-crc64.test.mjs",
"test:packaging-guards": "vitest run tests/package-version-guard.test.mjs tests/packaged-runtime-config.test.mjs tests/package-logging.test.mjs",
"test:linux-cli": "vitest run tests/linux-cli-packaging.test.mjs && npm --prefix App/memmy-agent exec vitest run tests/entrypoints/cli/linux-systemd-gateway.test.ts tests/entrypoints/cli/gateway-lifecycle.test.ts tests/entrypoints/cli/root-terminal-options.test.ts tests/entrypoints/cli/terminal-target.test.ts && npm --prefix Memory test -- tests/cli-setup.test.ts",
"serve": "npm run memory:serve",
"serve:local": "npm run memory:serve:local",
"serve:dev": "npm run memory:serve:dev",
"package:mac": "bash scripts/internal/mac/build-dmg.sh",
"package:mac:unsigned": "MEMMY_SKIP_CODESIGN=1 bash scripts/internal/mac/build-dmg.sh",
"package:mac:arm64:cn:unsigned": "bash scripts/package-mac.sh --version $npm_package_version --arch arm64 --edition cn --sign unsigned",
"package:mac:arm64:cn:signed": "bash scripts/package-mac.sh --version $npm_package_version --arch arm64 --edition cn --sign signed",
"package:mac:arm64:intl:unsigned": "bash scripts/package-mac.sh --version $npm_package_version --arch arm64 --edition intl --sign unsigned",
"package:mac:arm64:intl:signed": "bash scripts/package-mac.sh --version $npm_package_version --arch arm64 --edition intl --sign signed",
"package:mac:x64:cn:unsigned": "bash scripts/package-mac.sh --version $npm_package_version --arch x64 --edition cn --sign unsigned",
"package:mac:x64:cn:signed": "bash scripts/package-mac.sh --version $npm_package_version --arch x64 --edition cn --sign signed",
"package:mac:x64:intl:unsigned": "bash scripts/package-mac.sh --version $npm_package_version --arch x64 --edition intl --sign unsigned",
"package:mac:x64:intl:signed": "bash scripts/package-mac.sh --version $npm_package_version --arch x64 --edition intl --sign signed",
"package:win:x64": "bash scripts/package-win.sh --version $npm_package_version --arch x64 --edition cn --sign signed",
"package:win:x64:unsigned": "bash scripts/package-win.sh --version $npm_package_version --arch x64 --edition cn --sign unsigned",
"package:win:x64:cn:unsigned": "bash scripts/package-win.sh --version $npm_package_version --arch x64 --edition cn --sign unsigned",
"package:win:x64:cn:signed": "bash scripts/package-win.sh --version $npm_package_version --arch x64 --edition cn --sign signed",
"package:win:x64:intl:unsigned": "bash scripts/package-win.sh --version $npm_package_version --arch x64 --edition intl --sign unsigned",
"package:win:x64:intl:signed": "bash scripts/package-win.sh --version $npm_package_version --arch x64 --edition intl --sign signed",
"worker:run": "npm run memory:worker:run",
"memory:build": "npm run build -w @memmy/memory",
"memory:package": "npm run package:npm -w @memmy/memory",
"memory:pack": "npm run pack:npm -w @memmy/memory",
"memory:binary": "npm run binary -w @memmy/memory",
"memory:dev": "npm run dev -w @memmy/memory",
"memory:serve": "npm run serve -w @memmy/memory",
"memory:serve:local": "npm run serve:local -w @memmy/memory",
"memory:serve:dev": "npm run serve:dev -w @memmy/memory",
"memory:worker:run": "npm run worker:run -w @memmy/memory",
"memory:test": "npm run test -w @memmy/memory",
"agent:test:tui-cursor": "npm --prefix App/memmy-agent run test:tui-cursor",
"memory:lint": "npm run typecheck -w @memmy/memory",
"smoke:memory-layer": "npm run build -w @memmy/backend && npm run smoke:memory-layer:typecheck && tsx tests/smoke/memory-layer-smoke.ts",
"smoke:memory-layer:test": "vitest run tests/smoke/memory-layer-smoke-plan.test.ts",
"smoke:memory-layer:typecheck": "tsc -p tests/smoke/tsconfig.json --noEmit",
"smoke:local-agent-memory": "npm run memory:build && npm run build -w @memmy/backend && npm run smoke:memory-layer:typecheck && tsx tests/smoke/local-agent-memory-smoke.ts",
"smoke:local-agent-memory:cursor": "npm run memory:build && npm run build -w @memmy/backend && npm run smoke:memory-layer:typecheck && tsx tests/smoke/local-agent-memory-smoke.ts --sources=cursor",
"smoke:local-agent-memory:test": "vitest run tests/smoke/local-agent-memory-smoke-plan.test.ts",
"workspace:build": "npm run build --workspaces --if-present",
"workspace:lint": "npm run lint --workspaces --if-present",
"workspace:typecheck": "npm run typecheck --workspaces --if-present",
"workspace:test": "npm run test --workspaces --if-present",
"db:migrate": "npm run db:migrate -w @memmy/backend"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@electron/asar": "3.4.1",
"@eslint/js": "^9.39.4",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.7",
"concurrently": "^9.2.1",
"dotenv": "^16.6.1",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7",
"wait-on": "^9.0.10"
}
}