-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
43 lines (43 loc) · 1.28 KB
/
package.json
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
{
"name": "openapi-zod-client-monorepo",
"private": true,
"version": "1.4.18",
"repository": {
"type": "git",
"url": "https://github.com/astahmer/openapi-zod-client.git"
},
"preconstruct": {
"packages": [
"lib"
]
},
"author": "Alexandre Stahmer <[email protected]>",
"engines": {
"node": ">=18.16.0"
},
"packageManager": "^[email protected]",
"scripts": {
"dev": "preconstruct watch",
"build": "preconstruct build",
"test": "pnpm --filter=openapi-zod-client test:ci",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postinstall": "preconstruct dev",
"gen:samples": "rm -rf ./samples && tsx ./lib/samples-generator.ts",
"release": "pnpm changeset publish"
},
"license": "ISC",
"dependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@preconstruct/cli": "^2.2.1",
"conventional-changelog-cli": "^2.2.2",
"prettier": "^2.7.1",
"tsx": "^3.11.0",
"typescript": "^4.8.3"
}
}