-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.48 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
{
"name": "jumpybrain",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Markdown-native memory for coding agents.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"jumpybrain": "dist/cli.js"
},
"scripts": {
"build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.json",
"test": "npm run build && node --test",
"validate": "npm test",
"smoke:graph": "npx --package=playwright node scripts/graph-ui-smoke.mjs",
"smoke:graph-editor": "npm run build && npx --package=playwright node scripts/graph-editor-smoke.mjs",
"guard:staged": "node scripts/precommit-guard.mjs",
"hooks:install": "node scripts/install-git-hooks.mjs",
"cli:version": "node scripts/version-local.mjs",
"cli:pack": "node scripts/pack-local.mjs",
"cli:release:local": "npm run cli:version -- prerelease --preid local && npm run validate && npm run cli:pack",
"cli:install:local": "node scripts/install-local-cli.mjs",
"quality:report": "node scripts/code-quality-report.mjs"
},
"files": [
"dist",
"README.md",
"docs",
"skills",
"integrations",
"install.sh",
"uninstall.sh",
"scripts/public-install.mjs",
"scripts/remote-target-origin.mjs",
"scripts/public-uninstall.mjs"
],
"engines": {
"node": ">=22"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.9.1",
"fast-check": "^4.8.0",
"typescript": "^6.0.3"
}
}