-
Notifications
You must be signed in to change notification settings - Fork 205
/
package.json
64 lines (64 loc) · 1.93 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
{
"private": true,
"name": "@miniflare/root",
"version": "2.14.4",
"description": "Fun, full-featured, fully-local simulator for Cloudflare Workers",
"keywords": [
"cloudflare",
"workers",
"worker",
"local",
"cloudworker"
],
"author": "MrBBot <me@mrbbot.dev>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf './packages/*/dist' './dist'",
"build": "node scripts/build.mjs",
"types:build": "tsc",
"types:bundle": "npm run types:build && node scripts/types.mjs",
"dev": "node scripts/build.mjs watch",
"test": "npm run build && ava && rimraf ./.tmp",
"lint": "eslint --max-warnings=0 \"packages/*/{src,test}/**/*.ts\" \"packages/miniflare/bootstrap.js\" \"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",
"helpers:scaffold": "node scripts/scaffold.mjs",
"helpers:version": "node scripts/version.mjs",
"postinstall": "patch-package"
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@changesets/cli": "^2.24.3",
"@microsoft/api-extractor": "^7.19.4",
"@types/node": "^18.7.15",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^10.0.13",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"ava": "^3.15.0",
"better-sqlite3": "^8.0.1",
"esbuild": "^0.12.20",
"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",
"esm": "^3.2.25",
"patch-package": "^8.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"typescript": "^4.5.4",
"which": "^2.0.2"
},
"engines": {
"node": ">=16.13"
},
"volta": {
"node": "16.13.0"
}
}