forked from openapi-ts/openapi-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "openapi-typescript-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
},
"packageManager": "pnpm@10.14.0",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"dev": "pnpm run -r --parallel --filter \"{packages/*}\" --aggregate-output dev",
"format": "turbo run format",
"test": "turbo run test",
"test-e2e": "turbo run test-e2e",
"size": "turbo run size-limit",
"version": "pnpm run build && changeset version && pnpm i"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@playwright/test": "^1.54.2",
"@size-limit/preset-small-lib": "^11.2.0",
"@types/node": "^22.17.1",
"prettier": "^3.6.2",
"size-limit": "^11.2.0",
"turbo": "^2.5.5",
"typescript": "^5.9.2",
"unbuild": "^3.6.0",
"vitest": "^3.2.4"
},
"size-limit": [
{
"path": "packages/openapi-fetch/dist/index.mjs",
"limit": "7 kB",
"brotli": false
}
]
}