-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.75 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@workspacejson/codex-mcp",
"version": "0.1.9",
"description": "MCP server that surfaces workspace.json fragility and co-change intelligence to OpenAI Codex before it edits code.",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/workspacejson/integrations.git"
},
"homepage": "https://workspacejson.dev/implementations/codex",
"bugs": {
"url": "https://github.com/workspacejson/integrations/issues"
},
"keywords": [
"codex",
"mcp",
"model-context-protocol",
"workspace-json",
"codebase-intelligence",
"fragility",
"co-change",
"agent-hooks"
],
"bin": {
"codex-mcp": "scripts/install.mjs",
"workspacejson-codex-mcp": "scripts/install.mjs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist", "hooks", "scripts/install.mjs", ".codex-plugin", ".mcp.json", "vsix", "README.md", "LICENSE"],
"scripts": {
"build": "tsc",
"build:extension": "rm -rf extension/node_modules extension/*.vsix vsix/*.vsix && npm --prefix extension ci && npm --prefix extension run package && mkdir -p vsix && cp extension/workspacejson-codex-decorations-*.vsix vsix/",
"start": "node dist/index.js",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format --write .",
"test": "vitest run --exclude '.claude/**'",
"test:watch": "vitest --exclude '.claude/**'",
"smoke": "node scripts/smoke.mjs",
"check:structure": "node scripts/check-repo-structure.mjs",
"check:generator-version": "node scripts/check-generator-version.mjs",
"check:clone-parity": "node scripts/migration/verify-clone-parity.mjs",
"verify:receipt": "node scripts/migration/verify-clone-parity.mjs --out .parity-ci && node scripts/migration/verify-receipt.mjs docs/migration/parity-receipt.json .parity-ci/parity-receipt.json",
"consume:standard-candidate": "node scripts/migration/consume-standard-candidate.mjs",
"pack:check": "npm pack --dry-run && npx publint",
"check": "npm run check:structure && npm run check:generator-version && npm run typecheck && npm run lint && npm run build && npm run test && npm run smoke",
"verify": "npm run check",
"prepublishOnly": "npm run check && npm run build:extension && npm run pack:check"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.0.0",
"publint": "^0.3.21",
"typescript": "^5.9.0",
"vitest": "^3.2.7"
}
}