-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 966 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 966 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
36
37
38
39
40
41
42
{
"name": "overwork",
"version": "0.3.0",
"description": "Automatically split oversized Cloudflare Workers into multiple Workers connected via Service Bindings RPC.",
"type": "module",
"license": "MIT",
"bin": {
"overwork": "./dist/cli.js"
},
"files": [
"dist/cli.js",
"dist/cli.js.map"
],
"engines": {
"node": ">=20"
},
"keywords": [
"cloudflare",
"workers",
"service-bindings",
"rpc",
"code-splitting",
"esbuild"
],
"scripts": {
"build": "node scripts/build.js",
"pretest": "node scripts/build-test.js",
"test": "node --test test/*.test.js",
"demo": "node scripts/demo.js",
"demo:deploy": "node dist/cli.js deploy --output real-demo/.overwork"
},
"dependencies": {
"esbuild": "^0.24.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@types/node": "^22.0.0",
"pdf-lib": "^1.17.1",
"sql-formatter": "^15.7.0",
"typescript": "^5.7.0"
}
}