forked from honzabit/durable-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "durable-limiter",
"version": "1.0.0",
"description": "A rate-limiter using Durable Objects on CF Workers",
"type": "module",
"module": "./dist/index.mjs",
"scripts": {
"build": "node build.js",
"dev": "miniflare --live-reload --debug --modules dist/index.mjs",
"dev:remote": "wrangler dev",
"test": "npm run build && NODE_OPTIONS=--experimental-vm-modules npx vitest --silent run",
"types:check": "tsc && tsc -p test/tsconfig.json",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "eslint \"src/**/*.{ts,js}\" --fix",
"deploy": "wrangler publish"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"esbuild": "^0.14.41",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"miniflare": "^2.13.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"vitest": "^0.24.1",
"vitest-environment-miniflare": "^2.14.1",
"wrangler": "^3.1.1"
}
}