-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.91 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
{
"name": "zcode-plugin-codex",
"version": "0.1.0",
"description": "A Codex plugin that lets the Codex host call ZCode for code review and task delegation.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/vitry/zcode-plugin-codex"
},
"homepage": "https://github.com/vitry/zcode-plugin-codex",
"bugs": {
"url": "https://github.com/vitry/zcode-plugin-codex"
},
"author": "vitry <tzukai.chan@gmail.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=22.13.0"
},
"files": [
".codex-plugin/",
"agents/",
"hooks/",
"prompts/",
"schemas/",
"scripts/",
"skills/",
"CHANGELOG.md",
"docs/adr/0013-bind-rescue-child-to-zcode-session.md",
"docs/manual-uninstall.md",
"NOTICE",
"README.zh-CN.md",
"SECURITY.md",
"npm-shrinkwrap.json"
],
"scripts": {
"test": "node --test --test-concurrency=1 && node --test tests/integration/marketplace-snapshot-build.mjs",
"test:unit": "node --test tests/plugin-contracts.test.mjs",
"test:integration": "node --test tests/integration/plugin-layout.test.mjs",
"test:qualified": "node --test tests/e2e/codex-skills-e2e.test.mjs tests/e2e/real-zcode.test.mjs",
"test:qualification-required": "node --require ./tests/helpers/require-qualified.cjs --test tests/e2e/codex-skills-e2e.test.mjs tests/e2e/real-zcode.test.mjs",
"check:line-endings": "node scripts/check-line-endings.mjs",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"check": "npm run check:line-endings && npm run lint && npm run typecheck && npm test && npm run test:qualified"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@openai/codex": "0.147.0",
"@types/node": "^22.13.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"fs-native-extensions": "1.5.0"
},
"bundleDependencies": [
"fs-native-extensions"
]
}