-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.35 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.35 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
{
"name": "cc-plugin-codex",
"version": "1.0.8",
"description": "Claude Code Plugin for Codex by Sendbird",
"type": "module",
"author": {
"name": "Sendbird, Inc.",
"email": "jin.ku@sendbird.com",
"url": "https://sendbird.com/"
},
"homepage": "https://github.com/sendbird/cc-plugin-codex",
"repository": {
"type": "git",
"url": "git+https://github.com/sendbird/cc-plugin-codex.git"
},
"bin": "scripts/installer-cli.mjs",
"bugs": {
"url": "https://github.com/sendbird/cc-plugin-codex/issues"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"files": [
".codex-plugin",
"CHANGELOG.md",
"LICENSE",
"NOTICE",
"README.md",
"agents",
"assets",
"hooks",
"internal-skills",
"package.json",
"prompts",
"schemas",
"scripts",
"skills"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json",
"check:changelog": "node scripts/check-changelog.mjs",
"check:version-sync": "node scripts/check-version-sync.mjs",
"sync:plugin-version": "node scripts/sync-plugin-version.mjs",
"check": "npm run check:version-sync && npm run check:changelog && npm run lint && npm run typecheck && npm run test && npm run test:integration && npm run test:e2e",
"install:codex": "node scripts/installer-cli.mjs install",
"prepack": "npm run check:version-sync && npm run check:changelog",
"setup:git-hooks": "node scripts/setup-git-hooks.mjs",
"test": "node --test tests/*.test.mjs",
"test:cross-platform": "node --test tests/args.test.mjs tests/changelog.test.mjs tests/claude-cli.test.mjs tests/fs.test.mjs tests/prompts.test.mjs tests/render.test.mjs tests/sandbox-modes.test.mjs tests/skills-contracts.test.mjs tests/structured-output.test.mjs tests/version-sync.test.mjs",
"test:integration": "node --test tests/integration/*.test.mjs",
"test:e2e": "node --test tests/e2e/*.test.mjs",
"uninstall:codex": "node scripts/installer-cli.mjs uninstall",
"update:codex": "node scripts/installer-cli.mjs update",
"version": "npm run sync:plugin-version && npm run check:version-sync && npm run check:changelog"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.2.0",
"globals": "^17.5.0",
"typescript": "^6.0.2"
}
}