-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.05 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.05 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
{
"name": "cc-settings",
"private": true,
"type": "module",
"engines": {
"bun": ">=1.1.30"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:safety-net": "bun test tests/safety-net.test.ts",
"prototype:compile": "bun bench/prototype/compile.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:skills": "bun src/scripts/lint-skills.ts",
"audit:hooks": "bun src/scripts/audit-hooks.ts",
"format": "biome format --write .",
"schemas:emit": "bun src/schemas/emit.ts",
"schemas:check": "bun src/schemas/emit.ts && git diff --exit-code schemas/",
"upstream:scan": "bun src/upstream/scan.ts",
"compose": "bun -e 'import { composeSettings } from \"./src/lib/compose-settings.ts\"; console.log(JSON.stringify(await composeSettings(\".\"), null, \"\\t\"))'"
},
"dependencies": {
"@inquirer/prompts": "^8.4.2",
"yaml": "^2.8.3",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/bun": "1.3.12",
"typescript": "6.0.3"
}
}