forked from openapi-ts/openapi-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.16 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
{
"name": "openapi-typescript-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"author": {
"name": "Drew Powers",
"email": "[email protected]"
},
"scripts": {
"build": "run-p -s build:*",
"build:clean": "del packages/openapi-typescript/dist && del packages/openapi-fetch/dist",
"build:ts": "tsc -b packages/openapi-typescript/tsconfig.build.json packages/openapi-fetch/tsconfig.build.json",
"lint": "run-p -s lint:*",
"lint:openapi-typescript": "cd packages/openapi-typescript && pnpm run lint",
"lint:openapi-fetch": "cd packages/openapi-fetch && pnpm run lint",
"test": "run-p -s test:*",
"test:openapi-typescript": "cd packages/openapi-typescript && pnpm test",
"test:openapi-fetch": "cd packages/openapi-fetch && pnpm test",
"version": "pnpm run build && changeset version && pnpm i"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"del-cli": "^5.0.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}