-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "@iamdevlinph/codex-kit",
"version": "1.0.25",
"description": "Portable Codex subagents and project AGENTS.md defaults.",
"type": "module",
"bin": {
"codex-kit": "bin/codex-kit.js"
},
"files": [
"assets/agents",
"assets/SUBAGENT_ROUTING.md",
"assets/TEMPLATE_AGENTS.md",
"assets/skills",
"bin"
],
"scripts": {
"build": "pnpm exec tsc -p tsconfig.json --noEmit && node scripts/build.mjs",
"typecheck": "pnpm exec tsc -p tsconfig.json --noEmit && pnpm exec tsc -p tsconfig.test.json --noEmit",
"test": "pnpm run build && pnpm exec vitest run",
"prepack": "pnpm run build",
"pack:check": "pnpm pack --dry-run",
"format": "biome check --write .",
"format:check": "biome check .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check",
"fix": "biome check --fix",
"prepare": "husky",
"precommit": "lint-staged"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamdevlinph/codex-kit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@types/node": "20.19.43",
"esbuild": "0.28.1",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"typescript": "7.0.1-rc",
"vitest": "4.1.10"
},
"packageManager": "pnpm@11.5.2",
"license": "ISC",
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}