forked from karlvr/openapi-generator-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "openapi-generator-plus-root",
"private": true,
"version": "0.0.0",
"description": "",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"build": "pnpm --recursive build",
"check-updates": "pnpm dlx npm-check-updates -u && pnpm --recursive exec pnpm dlx npm-check-updates -u",
"clean": "pnpm --recursive clean",
"clean:node": "pnpm --recursive exec rm -rf node_modules && rm -rf node_modules",
"link": "pnpm --recursive exec pnpm link --global",
"lint": "pnpm --recursive lint",
"release": "pnpm clean && pnpm lint && pnpm build && pnpm test && pnpm publish --recursive && pnpm exec changeset tag && pnpm install",
"release:version": "pnpm changeset version && pnpm install",
"test": "pnpm --recursive test",
"test-core": "cd packages/core && pnpm t -- --watch",
"watch": "pnpm --parallel watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karlvr/openapi-generator-plus.git"
},
"author": "Karl von Randow",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/karlvr/openapi-generator-plus/issues"
},
"homepage": "https://github.com/karlvr/openapi-generator-plus#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/pluralize": "0.0.33",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.54.0",
"eslint-plugin-jest": "^28.2.0",
"jest": "^29.7.0",
"openapi-types": "^12.1.3",
"pluralize": "^8.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}