-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 737 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 737 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
{
"name": "aipipe",
"version": "1.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"test:live": "WRANGLER_LOG=none vitest --watch",
"test": "WRANGLER_LOG=none vitest run",
"lint": "dprint fmt -c https://raw.githubusercontent.com/sanand0/scripts/refs/heads/main/dprint.jsonc && npx -y oxlint --fix",
"prepublishOnly": "npm run lint"
},
"prettier": { "printWidth": 120 },
"type": "module",
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.9.13",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"tap": "^21.1.0",
"vitest": "^3.2.4",
"wrangler": "^4.12.0"
},
"dependencies": { "jose": "^6.0.10" }
}