-
Notifications
You must be signed in to change notification settings - Fork 210
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@miniflare/root",
"version": "3.20231016.0",
"private": true,
"description": "Fun, full-featured, fully-local simulator for Cloudflare Workers",
"keywords": [
"cloudflare",
"workers",
"worker",
"local",
"cloudworker"
],
"license": "MIT",
"author": "MrBBot <me@mrbbot.dev>",
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "patch-package",
"build": "node scripts/build.mjs",
"capnp:workerd": "capnpc -o ts packages/miniflare/src/runtime/config/workerd.capnp",
"clean": "rimraf './packages/*/dist' './dist'",
"dev": "node scripts/build.mjs watch",
"helpers:scaffold": "node scripts/scaffold.mjs",
"helpers:version": "node scripts/version.mjs",
"lint": "eslint \"packages/*/{src,test}/**/*.ts\" \"scripts/**/*.{js,mjs}\" \"types/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run lint && npm run clean && npm run build && npm run types:bundle && npm run test",
"release": "./scripts/release.sh",
"test": "npm run build && ava && rimraf ./.tmp",
"types:build": "tsc && tsc -p packages/miniflare/src/workers/tsconfig.json",
"types:bundle": "npm run types:build && node scripts/types.mjs"
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@microsoft/api-extractor": "^7.36.3",
"@types/node": "^18.11.9",
"@types/rimraf": "^3.0.2",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"ava": "^5.2.0",
"capnp-ts": "^0.7.0",
"capnpc-ts": "^0.7.0",
"esbuild": "^0.16.17",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"expect-type": "^0.15.0",
"patch-package": "^6.4.7",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "~5.0.4",
"which": "^2.0.2"
},
"engines": {
"node": ">=16.13"
},
"volta": {
"node": "18.16.0"
},
"overrides": {
"capnpc-ts": {
"typescript": "4.2.4"
}
}
}