-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "@mattbaconz/kernel",
"version": "0.1.0",
"description": "Kernel CLI: a repo-local quality system and portable operating layer for coding agents.",
"type": "module",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mattbaconz/kernel.git"
},
"bugs": {
"url": "https://github.com/mattbaconz/kernel/issues"
},
"homepage": "https://github.com/mattbaconz/kernel#readme",
"bin": {
"kernel": "./dist/cli/index.js"
},
"files": [
"dist",
"schemas"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"lint": "eslint .",
"format": "prettier --write .",
"verify:packed": "node scripts/verify-packed-cli.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.2",
"yaml": "^2.8.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^25.0.0",
"ajv": "^8.20.0",
"eslint": "^9.39.1",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15"
},
"packageManager": "pnpm@10.24.0"
}