-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "jumpybrain",
"version": "0.0.1-local.2",
"private": true,
"type": "module",
"description": "Markdown-native memory for coding agents.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
}
},
"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",
"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/public-uninstall.mjs"
],
"engines": {
"node": ">=22"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.9.1",
"fast-check": "^4.8.0",
"typescript": "^6.0.3"
}
}