-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 2.15 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
{
"name": "contextforge",
"version": "0.1.52",
"description": "Claude-first context optimizer for code agents",
"license": "MIT",
"homepage": "https://github.com/Yabuku-xD/contextforge",
"repository": {
"type": "git",
"url": "https://github.com/Yabuku-xD/contextforge.git"
},
"engines": {
"node": ">=22.5.0"
},
"type": "module",
"main": "dist/src/cli.js",
"bin": {
"contextforge": "./dist/src/cli.js",
"contextforge-mcp": "./dist/src/mcp-server.js"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "node ./scripts/build.mjs",
"prepare": "npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && find dist/tests -name '*.test.js' -print0 | xargs -0 node --test --test-concurrency=1",
"bench": "node ./dist/src/cli.js benchmark ./tests/fixtures/sample-app",
"bench:repo": "node ./dist/src/cli.js benchmark .",
"compare": "node ./dist/src/cli.js compare ./tests/fixtures/sample-app",
"gate": "node ./dist/src/cli.js gate ./tests/fixtures/sample-app",
"swebench": "node ./dist/src/cli.js swebench ./tests/fixtures/sample-app",
"blackbox": "node ./dist/src/cli.js blackbox ./tests/fixtures/sample-app",
"phase3": "node ./dist/src/cli.js phase3 ./tests/fixtures/sample-app",
"release": "node ./dist/src/cli.js release ./tests/fixtures/sample-app",
"scoreboard": "node ./dist/src/cli.js scoreboard ./tests/fixtures/sample-app",
"mcp": "node ./dist/src/mcp-server.js --root ./tests/fixtures/sample-app",
"doctor": "node ./dist/src/cli.js doctor",
"index": "node ./dist/src/cli.js index ./tests/fixtures/sample-app",
"search": "node ./dist/src/cli.js search \"checkout timeout\" ./tests/fixtures/sample-app",
"report-status": "node ./dist/src/cli.js report-status"
},
"dependencies": {
"@atjsh/llmlingua-2": "^2.0.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"tree-sitter": "^0.21.1",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-typescript": "^0.23.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^24.7.2",
"typescript": "^5.9.3"
}
}