105 lines
3.2 KiB
JSON
105 lines
3.2 KiB
JSON
{
|
|
"name": "miniflare",
|
|
"version": "3.20240419.1",
|
|
"description": "Fun, full-featured, fully-local simulator for Cloudflare Workers",
|
|
"keywords": [
|
|
"cloudflare",
|
|
"workers",
|
|
"worker",
|
|
"local",
|
|
"cloudworker"
|
|
],
|
|
"homepage": "https://github.com/cloudflare/workers-sdk/tree/main/packages/miniflare#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/cloudflare/workers-sdk/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cloudflare/workers-sdk.git",
|
|
"directory": "packages/miniflare"
|
|
},
|
|
"license": "MIT",
|
|
"author": "MrBBot <me@mrbbot.dev>",
|
|
"main": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"files": [
|
|
"dist/src",
|
|
"bootstrap.js"
|
|
],
|
|
"bin": {
|
|
"miniflare": "bootstrap.js"
|
|
},
|
|
"dependencies": {
|
|
"@cspotcode/source-map-support": "0.8.1",
|
|
"acorn": "^8.8.0",
|
|
"acorn-walk": "^8.2.0",
|
|
"capnp-ts": "^0.7.0",
|
|
"exit-hook": "^2.2.1",
|
|
"glob-to-regexp": "^0.4.1",
|
|
"stoppable": "^1.1.0",
|
|
"undici": "^5.28.2",
|
|
"workerd": "1.20240419.0",
|
|
"ws": "^8.11.0",
|
|
"youch": "^3.2.2",
|
|
"zod": "^3.20.6"
|
|
},
|
|
"devDependencies": {
|
|
"@ava/typescript": "^4.0.0",
|
|
"@cloudflare/workers-types": "^4.20240419.0",
|
|
"@microsoft/api-extractor": "^7.36.3",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/estree": "^1.0.0",
|
|
"@types/glob-to-regexp": "^0.4.1",
|
|
"@types/http-cache-semantics": "^4.0.1",
|
|
"@types/node": "^18.11.9",
|
|
"@types/rimraf": "^3.0.2",
|
|
"@types/stoppable": "^1.1.1",
|
|
"@types/which": "^2.0.1",
|
|
"@types/ws": "^8.5.3",
|
|
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
"@typescript-eslint/parser": "^6.9.0",
|
|
"ava": "^5.2.0",
|
|
"capnpc-ts": "^0.7.0",
|
|
"concurrently": "^8.2.2",
|
|
"devalue": "^4.3.0",
|
|
"devtools-protocol": "^0.0.1182435",
|
|
"esbuild": "^0.16.17",
|
|
"eslint": "^8.6.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-es": "^4.1.0",
|
|
"eslint-plugin-import": "2.26.x",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"expect-type": "^0.15.0",
|
|
"http-cache-semantics": "^4.1.0",
|
|
"kleur": "^4.1.5",
|
|
"prettier": "^3.0.3",
|
|
"rimraf": "^3.0.2",
|
|
"source-map": "^0.6.0",
|
|
"typescript": "^5.4.5",
|
|
"which": "^2.0.2",
|
|
"@cloudflare/kv-asset-handler": "0.3.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.13"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"workers-sdk": {
|
|
"prerelease": true
|
|
},
|
|
"scripts": {
|
|
"build": "node scripts/build.mjs && pnpm run types:build",
|
|
"capnp:workerd": "capnpc -o ts src/runtime/config/workerd.capnp",
|
|
"clean": "rimraf ./dist ./dist-types",
|
|
"dev": "concurrently -n esbuild,typechk,typewrk -c yellow,blue,blue.dim \"node scripts/build.mjs watch\" \"node scripts/types.mjs tsconfig.json watch\" \"node scripts/types.mjs src/workers/tsconfig.json watch\"",
|
|
"test": "node scripts/build.mjs && ava && rimraf ./.tmp",
|
|
"test:ci": "pnpm run test",
|
|
"check:lint": "eslint --max-warnings=0 \"{src,test}/**/*.ts\" \"scripts/**/*.{js,mjs}\" \"types/**/*.ts\"",
|
|
"lint:fix": "pnpm run check:lint --fix",
|
|
"types:build": "node scripts/types.mjs tsconfig.json && node scripts/types.mjs src/workers/tsconfig.json"
|
|
}
|
|
} |