-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.96 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.96 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
{
"name": "think",
"private": true,
"version": "0.7.0",
"type": "module",
"description": "Capture raw thoughts instantly. Revisit them later.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/flyingrobots/think.git"
},
"bin": {
"think": "./bin/think.js",
"think-mcp": "./bin/think-mcp.js"
},
"scripts": {
"lint": "node ./scripts/lint.mjs",
"macos": "node ./scripts/package-macos-app.mjs --open",
"macos:bundle": "node ./scripts/package-macos-app.mjs",
"macos:dev": "swift run --package-path macos ThinkMenuBarApp",
"mcp": "node ./bin/think-mcp.js",
"test:ports": "node --test test/ports/*.test.js",
"test:m1": "node --test test/acceptance/*.test.js",
"test:benchmarks": "node --test test/benchmarks/*.test.js",
"test:m2": "swift test --package-path macos",
"test:fast": "npm run lint && npm run test:ports",
"test": "npm run test:ports && npm run test:m1",
"test:local": "npm run test:ports && npm run test:m1 && npm run test:m2",
"install-hooks": "git config --local core.hooksPath scripts/hooks",
"tui": "node ./bin/think.js --browse",
"benchmark:browse": "node benchmarks/browse-bootstrap.js",
"benchmark:capture": "node benchmarks/capture-latency.js",
"echo:probe": "node ./scripts/think-echo-capability-probe.mjs",
"repair:v17-mind": "node ./scripts/repair-v17-mind.mjs",
"runtime-truth:ratchet": "node ./scripts/runtime-truth-ratchet.mjs"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@flyingrobots/bijou": "^4.4.1",
"@flyingrobots/bijou-node": "^4.4.1",
"@flyingrobots/bijou-tui": "^4.4.1",
"@git-stunts/alfred": "0.4.0",
"@git-stunts/git-warp": "15.0.0",
"@git-stunts/plumbing": "2.8.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@git-stunts/git-cas": "^5.3.2",
"eslint": "^10.1.0",
"globals": "^17.4.0"
}
}