forked from openapi-ts/openapi-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "openapi-typescript-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"author": {
"name": "Drew Powers",
"email": "[email protected]"
},
"scripts": {
"build": "pnpm run -r --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",
"size": "pnpm run build && size-limit",
"version": "pnpm run build && changeset version && pnpm i"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@playwright/test": "^1.47.1",
"@size-limit/preset-small-lib": "^11.1.5",
"@types/node": "^22.5.5",
"del-cli": "^5.1.0",
"prettier": "^3.3.3",
"size-limit": "^11.1.5",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"size-limit": [
{
"path": "packages/openapi-fetch/dist/index.min.js",
"limit": "6.5 kB",
"brotli": false
}
]
}