-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 829 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 829 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
{
"name": "opus-transcriber-proxy",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"format": "prettier --write '**/*.{js,ts,css,json,md}'",
"configure": "make configure -j$(node -e 'console.log(require(\"os\").cpus().length)')",
"build": "make -j$(node -e 'console.log(require(\"os\").cpus().length)') && tsc",
"build:wasm": "make -j$(node -e 'console.log(require(\"os\").cpus().length)')",
"build:ts": "tsc",
"dev": "npm run build && wrangler dev",
"deploy": "npm run build && wrangler deploy",
"typecheck": "tsc --noEmit",
"test": "vitest",
"cf-typegen": "wrangler types"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.19",
"@types/node": "^24.7.2",
"prettier": "3.6.2",
"typescript": "^5.9.3",
"vitest": "~3.2.0",
"wrangler": "^4.38.0"
}
}