-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.11 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.11 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "typed-route-handler",
"version": "3.1.0",
"description": "Type-safe route handlers for Next.js",
"keywords": [
"next",
"route handler",
"typescript",
"api"
],
"homepage": "https://github.com/venables/typed-route-handler#readme",
"bugs": {
"url": "https://github.com/venables/typed-route-handler/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venables/typed-route-handler.git"
},
"license": "MIT",
"author": "Matt Venables <matt@venabl.es>",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"check": "bun run format:check && bun run lint && bun run typecheck && bun test --coverage",
"clean": "git clean -xdf dist node_modules/.cache",
"fix": "bun run format && bun run lint:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"nuke": "bun clean && rm -rf node_modules",
"outdated": "npx npm-check-updates --interactive --format group",
"prepublishOnly": "bun run build",
"publint": "npx publint@latest",
"typecheck": "tsc --noEmit --pretty"
},
"dependencies": {
"standard-parse": "^0.3.0"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@prettier/plugin-oxc": "^0.0.4",
"@types/bun": "^1.2.19",
"eslint": "^9.31.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.18",
"tsdown": "^0.13.0",
"typescript": "^5",
"typescript-eslint": "^8.37.0",
"valibot": "^1.1.0",
"zod": "^4.0.13"
},
"peerDependencies": {
"next": ">= 15"
}
}