-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
59
60
61
62
{
"name": "@xiwuqi/contextforge",
"version": "0.1.0",
"description": "Local-first repository-to-agent CLI that compiles repository context and task sources into agent-ready briefs for Codex, Claude Code, and Cursor.",
"license": "MIT",
"type": "module",
"keywords": [
"cli",
"local-first",
"developer-tools",
"repository-context",
"agent-context",
"coding-agents",
"codex",
"claude-code",
"cursor"
],
"homepage": "https://github.com/xiwuqi/ContextForge#readme",
"bugs": {
"url": "https://github.com/xiwuqi/ContextForge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiwuqi/ContextForge.git"
},
"bin": {
"contextforge": "./dist/cli/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "npm run build",
"test": "vitest run",
"lint": "eslint .",
"format": "prettier --write .",
"smoke:pack": "node ./scripts/smoke-pack.mjs",
"eval:fixtures": "node ./scripts/eval-fixtures.mjs",
"publish:dry-run": "node ./scripts/publish-dry-run.mjs",
"demo:refresh": "node ./scripts/refresh-demo-assets.mjs",
"release:check": "node ./scripts/release-check.mjs",
"release:artifacts": "node ./scripts/release-artifacts.mjs"
},
"dependencies": {
"commander": "^13.1.0",
"ignore": "^7.0.4",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^8.57.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}