-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "@express-zod-api/migration",
"version": "27.0.0",
"license": "MIT",
"description": "Migration scripts for express-zod-api",
"repository": {
"type": "git",
"url": "git+https://github.com/RobinTail/express-zod-api.git"
},
"author": {
"name": "Anna Bocharova",
"url": "https://robintail.cz",
"email": "me@robintail.cz"
},
"bugs": "https://github.com/RobinTail/express-zod-api/issues",
"funding": "https://github.com/sponsors/RobinTail",
"scripts": {
"pretest": "tsc",
"test": "vitest run --globals",
"build": "tsdown",
"prepublishOnly": "eslint && pnpm test && pnpm build"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"*.md"
],
"engines": {
"node": "^20.19.0 || ^22.13.0 || ^24.0.0"
},
"peerDependencies": {
"eslint": "^10.0.0",
"typescript-eslint": "^8.54.0"
},
"devDependencies": {
"@typescript-eslint/rule-tester": "catalog:dev",
"dts-plugin": "workspace:^",
"typescript": "catalog:dev"
}
}