-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 969 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 969 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
31
32
33
34
35
{
"name": "bluprint",
"module": "index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/bun": "latest",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.7.4",
"typescript-eslint": "^8.28.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@opencode-ai/sdk": "^1.0.169",
"@types/yargs": "^17.0.35",
"neverthrow": "^8.2.0",
"yargs": "^18.0.0",
"zod": "^4.3.5"
},
"scripts": {
"typecheck": "bun tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "eslint . --max-warnings 0 --cache",
"lint:fix": "eslint . --fix --cache",
"lint:clean": "eslint . --max-warnings 0 --no-cache",
"test": "bun test",
"check": "bun run typecheck && bun run lint"
}
}