-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 725 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 725 Bytes
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
{
"name": "esperta-code",
"version": "0.1.0",
"module": "src/index.ts",
"type": "module",
"private": true,
"bin": {
"esperta-code": "./src/cli/index.ts",
"feliz": "./src/cli/index.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"test": "bun test",
"lint": "bunx --bun tsc --noEmit",
"build": "bun build src/index.ts --outdir dist --target bun",
"e2e:doctor": "bun run src/cli/index.ts e2e doctor",
"e2e:smoke": "bash scripts/e2e-smoke.sh",
"e2e:real": "bash scripts/e2e-real.sh"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@linear/sdk": "^76.0.0",
"yaml": "^2.4.0"
}
}