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.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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": "[email protected]"
},
"packageManager": "[email protected]",
"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": "2.2.5",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.7",
"@playwright/test": "1.55.1",
"@size-limit/preset-small-lib": "11.2.0",
"@types/node": "22.18.3",
"prettier": "3.6.2",
"size-limit": "11.2.0",
"turbo": "2.5.6",
"typescript": "catalog:",
"unbuild": "3.6.1",
"vitest": "3.2.4"
},
"size-limit": [
{
"path": "packages/openapi-fetch/dist/index.mjs",
"limit": "7 kB",
"brotli": false
}
]
}