-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.73 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.73 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
{
"name": "memory-runtime",
"private": true,
"version": "0.1.0",
"description": "Hot/cold memory runtime for CLI agents.",
"license": "MIT",
"type": "module",
"packageManager": "npm@11.8.0",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"check:scaffold": "node ./scripts/check-scaffold.mjs",
"check:imports": "node ./scripts/check-imports.mjs",
"check:install": "./scripts/check-shell-install.sh",
"check:cold-docker": "./scripts/check-memory-palace-docker-install.sh",
"check:hot-memory": "node --disable-warning=ExperimentalWarning --experimental-strip-types --import ./scripts/register-ts-loader.mjs ./scripts/smoke-hot-memory.ts",
"check:test": "node --disable-warning=ExperimentalWarning --experimental-strip-types --import ./scripts/register-ts-loader.mjs --test ./tests/**/*.test.ts",
"check:all": "npm run check:scaffold && npm run check:imports && npm run check:install && npm run check:cold-docker && npm run check:hot-memory && npm run check:test",
"export:public": "./scripts/export-public.sh",
"install:memory-palace-tools": "./scripts/install-memory-palace-project-tools.sh",
"bench:bootstrap": "node --disable-warning=ExperimentalWarning --experimental-strip-types --import ./scripts/register-ts-loader.mjs ./benchmarks/run-bootstrap-benchmark.ts",
"bench:tokens": "node --disable-warning=ExperimentalWarning --experimental-strip-types --import ./scripts/register-ts-loader.mjs ./benchmarks/run-token-savings-benchmark.ts",
"bench:skills-governance": "node --disable-warning=ExperimentalWarning --experimental-strip-types --import ./scripts/register-ts-loader.mjs ./benchmarks/run-skills-governance-benchmark.ts"
}
}