-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.61 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
{
"name": "snitch-monorepo",
"version": "0.0.1",
"description": "Snitch service and OpenCode plugin packages",
"author": "Kris",
"private": true,
"type": "module",
"bin": {
"snitch": "./packages/snitch/src/index.ts"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun build ./packages/snitch-service/src/index.ts --outdir ./packages/snitch-service/dist --target bun --external kokoro-js --external @huggingface/transformers && swiftc ./packages/snitch-service/src/pcm-player.swift -o ./packages/snitch-service/dist/snitch-pcm-player && bun build ./packages/opencode-plugin-snitch/src/index.ts ./packages/opencode-plugin-snitch/src/tui.ts --outdir ./packages/opencode-plugin-snitch/dist --target bun && bun build ./packages/opencode-plugin-snitch-tui/src/index.ts --outdir ./packages/opencode-plugin-snitch-tui/dist --target bun && bun build ./packages/snitch/src/index.ts --outdir ./packages/snitch/dist --target bun",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"service": "bun run ./packages/snitch-service/src/index.ts"
},
"devDependencies": {
"@opencode-ai/plugin": "latest",
"@opencode-ai/sdk": "latest",
"@eslint/js": "^9.39.1",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"bun-types": "latest",
"eslint": "^9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"typescript-eslint": "^8.47.0",
"vitest": "^3.2.4"
}
}