-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "ratelimit-monorepo",
"private": true,
"version": "0.0.0",
"description": "Framework-agnostic rate limiting library",
"author": "rokasta12",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rokasta12/ratelimit.git"
},
"homepage": "https://rokasta12.github.io/ratelimit/",
"bugs": {
"url": "https://github.com/rokasta12/ratelimit/issues"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r clean && rm -rf node_modules",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm lint:fix",
"release": "pnpm build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.10",
"@types/node": "^22.13.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@9.14.4",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": ["biome check --write --no-errors-on-unmatched"],
"*.{json,md}": ["biome format --write --no-errors-on-unmatched"]
}
}