-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.13 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": "obelisk",
"version": "0.2.0",
"private": true,
"type": "module",
"description": "Explicit memory infrastructure for coding agents — a queryable SQLite evidence layer over local coding-agent history, plus human-approved durable memory.",
"license": "AGPL-3.0",
"workspaces": [
"packages/*"
],
"scripts": {
"pretest": "npm run build:core && npm run build:cli && npm run build --workspace @obelisk/dsh-obelisk-plugin",
"test": "node --experimental-test-module-mocks --test tests/*.test.mjs",
"typecheck": "tsc --noEmit && tsc --noEmit -p app/tsconfig.json",
"lint": "eslint .",
"build:core": "npm run build --workspace @obelisk/core",
"build:cli": "npm run build --workspace @obelisk-apps/cli",
"build:skill": "node packaging/build-skill.mjs",
"eval:context-window": "node scripts/context-window-ab-eval.mjs",
"publish:skill": "npm run build:skill && packaging/publish-skill.sh"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0"
}
}