-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.2 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.2 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
79
80
81
82
83
84
85
{
"name": "@devscast/zod-openapi",
"version": "1.0.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/devscast/zod-openapi.git"
},
"bugs": {
"url": "https://github.com/devscast/zod-openapi/issues"
},
"homepage": "https://github.com/devscast/zod-openapi#readme",
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@types/bun": "latest",
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^4.0.18",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"tsup": "^8.5.1",
"vitest": "^4.0.18",
"zod": "^4.3.6"
},
"scripts": {
"build": "tsup --minify",
"dev": "tsup --watch",
"test": "vitest run --config vitest.config.ts",
"test:coverage": "vitest run --config vitest.config.ts --coverage",
"test:watch": "vitest",
"============= HUSKY =============": "",
"prepare": "husky",
"commit": "cz",
"=========== CODE STYLE ============": "",
"lint": "biome check && biome lint",
"format": "biome format --write && biome check --write && biome lint --write",
"typecheck": "tsc --noEmit",
"=========== NPM PUBLISH ==============": "",
"release": "npm run build && npm publish --access public",
"version": "changeset version"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.3",
"openapi3-ts": "^4.5.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}