2026-07-08 16:42:08 +08:00
{
"name" : "obelisk" ,
2026-07-20 01:58:22 +08:00
"version" : "0.2.0" ,
2026-07-08 16:42:08 +08:00
"private" : true ,
"type" : "module" ,
2026-08-04 11:33:01 -04:00
"description" : "Explicit memory infrastructure for coding agents — a queryable SQLite evidence layer over local coding-agent history, plus human-approved durable memory." ,
2026-07-08 16:42:08 +08:00
"license" : "AGPL-3.0" ,
2026-07-12 00:28:17 +08:00
"workspaces" : [
"packages/*"
],
2026-07-08 16:42:08 +08:00
"scripts" : {
2026-07-16 17:26:23 +08:00
"pretest" : "npm run build:cli" ,
2026-07-09 11:02:20 +08:00
"test" : "node --experimental-test-module-mocks --test tests/*.test.mjs" ,
2026-07-09 16:25:59 +08:00
"typecheck" : "tsc --noEmit && tsc --noEmit -p app/tsconfig.json" ,
2026-07-09 09:34:25 +08:00
"lint" : "eslint ." ,
2026-07-12 00:28:17 +08:00
"build:core" : "npm run build --workspace @obelisk/core" ,
2026-07-16 17:26:23 +08:00
"build:cli" : "npm run build --workspace @obelisk-apps/cli" ,
"build:skill" : "node packaging/build-skill.mjs" ,
2026-07-11 16:18:43 +08:00
"publish:skill" : "npm run build:skill && packaging/publish-skill.sh"
2026-07-08 16:42:08 +08:00
},
"devDependencies" : {
"@eslint/js" : "^10.0.1" ,
"@types/node" : "^26.1.1" ,
"eslint" : "^10.6.0" ,
"globals" : "^17.7.0" ,
2026-07-08 16:59:30 +08:00
"typescript" : "^6.0.3" ,
"typescript-eslint" : "^8.63.0"
2026-07-08 16:42:08 +08:00
}
}