-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.08 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
{
"name": "epimetheus",
"version": "0.5.0",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"lint": "biome lint .",
"format": "biome format . --write && sed -i'' -e 's/[[:space:]]*$//' src/*.ts *.md",
"format:check": "biome format . --check && ! grep -n '[[:space:]]$' src/*.ts *.md",
"check": "biome check . && ! grep -n '[[:space:]]$' src/*.ts *.md",
"check:fix": "biome check . --write && sed -i'' -e 's/[[:space:]]*$//' src/*.ts *.md",
"typecheck": "bun run --bun tsc --noEmit",
"commitlint": "commitlint",
"ci": "bun run check && bun run typecheck && bun test --isolate"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@types/bun": "latest"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"dependencies": {
"@vectorize-io/hindsight-client": "0.8.3",
"jsonc-parser": "^3.3.1",
"typebox": "^1.1.24"
},
"pi": {
"extensions": ["./src/index.ts"]
}
}