This repository was archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
45
46
{
"version": "0.6.2",
"engines": {
"node": ">=16"
},
"type": "module",
"author": "dan-lee",
"license": "MIT",
"repository": "https://github.com/dan-lee/multiflare",
"name": "multiflare",
"bin": "dist/cli.js",
"main": "dist/multiflare.js",
"types": "dist/multiflare.d.ts",
"module": "dist/multiflare.js",
"files": [
"dist"
],
"dependencies": {
"@iarna/toml": "3.0.0",
"commander": "8.3.0",
"match-url-wildcard": "0.0.4",
"miniflare": "2.0.0-rc.2"
},
"scripts": {
"build": "tsup && yarn build:root-worker",
"build:root-worker": "esbuild src/root-worker.ts --bundle --format=esm --outfile=dist/root-worker.js",
"multiflare": "node --experimental-vm-modules --loader @erwink/esb src/cli.ts",
"example": "yarn multiflare example/multiflare/workers",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"prepublishOnly": "yarn build && yarn test"
},
"devDependencies": {
"@cloudflare/workers-types": "3.2.0",
"@erwink/esb": "1.0.0-next.12",
"@types/jest": "27.0.3",
"@types/node": "16.11.9",
"esbuild": "0.13.15",
"esbuild-jest": "0.5.0",
"jest": "27.3.1",
"jest-environment-miniflare": "2.0.0-rc.2",
"prettier": "2.4.1",
"tsup": "5.8.0",
"typescript": "4.5.2",
"undici": "4.10.2"
}
}