-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@perseidesjs/medusa-plugin-rate-limit",
"version": "3.2.1",
"description": "A simple rate-limit middleware for Medusa",
"author": "adevinwild",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/perseidesjs/medusa-plugin-rate-limit.git"
},
"keywords": [
"medusa",
"medusa-plugin",
"medusa-v2",
"medusa-plugin-other",
"rate-limit",
"rate-limiting"
],
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "rimraf dist && tsc --build ./tsconfig.json",
"build:publish": "rimraf dist && tsc --build ./tsconfig.build.json",
"watch": "tsc --watch",
"format": "biome format --write",
"format:check": "biome format",
"typecheck": "tsc -b --noEmit",
"lint": "biome lint --write",
"lint:check": "biome lint",
"prepublishOnly": "npm run build:publish",
"version": "changeset version",
"release": "yarn build:publish && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/cli": "^2.29.8",
"@epic-web/config": "^1.21.3",
"@medusajs/framework": "^2.12.4",
"@swc/core": "^1.15.8",
"@types/ioredis": "^5.0.0",
"ajv": "^8.17.1",
"cross-env": "^5.2.1",
"express": "^4.22.1",
"ioredis": "^5.9.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"redis-memory-server": "^0.13.0",
"rimraf": "^5.0.10",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@medusajs/framework": ">=2.12.4"
},
"packageManager": "[email protected]"
}