-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
39
40
41
42
43
44
{
"$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/package.json",
"name": "workers-go",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"worker": "pnpm --filter worker",
"uws": "pnpm --filter uws",
"hono": "pnpm --filter hono",
"deno": "pnpm --filter deno",
"bun": "pnpm --filter bun",
"dev:worker": "vite",
"dev:uws": "pnpm uws dev",
"test": "pnpm worker build && vitest",
"test:go": "GOOS=js GOARCH=wasm go test -timeout 500ms ./...",
"bench:go": "GOOS=js GOARCH=wasm go test -bench=. ./...",
"test:cf": "pnpm worker build && vitest run",
"lint": "GOOS=js GOARCH=wasm golangci-lint run"
},
"keywords": [],
"author": "Darckfast",
"engines": {
"node": "22"
},
"engineStrict": true,
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@cloudflare/vite-plugin": "^1.12.0",
"@cloudflare/vitest-pool-workers": "^0.8.67",
"@faker-js/faker": "^10.0.0",
"@types/bun": "^1.2.21",
"@types/node": "^24.3.0",
"vite": "^7.1.3",
"vite-plugin-watch": "^0.3.1",
"vitest": "^3.2.4",
"wrangler": "^4.33.0"
},
"dependencies": {
"@cloudflare/containers": "^0.0.26"
}
}