forked from openapi-ts/openapi-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 913 Bytes
/
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
{
"name": "openapi-typescript-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"author": {
"name": "Drew Powers",
"email": "[email protected]"
},
"scripts": {
"build": "pnpm run -r --parallel --filter \"!*docs\" --aggregate-output build",
"lint": "pnpm run -r --parallel --aggregate-output lint",
"format": "pnpm run -r --parallel --aggregate-output format",
"test": "pnpm run -r --parallel --aggregate-output test",
"test-e2e": "pnpm run -r --parallel --aggregate-output test-e2e",
"version": "pnpm run build && changeset version && pnpm i"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@playwright/test": "^1.44.1",
"@types/node": "^20.14.7",
"del-cli": "^5.1.0",
"prettier": "^3.3.2",
"typescript": "^5.4.5",
"vitest": "^2.0.5"
}
}