-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2 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
44
45
46
47
48
49
{
"name": "openapi-generator-plus-generators",
"private": true,
"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 link -D @openapi-generator-plus/testing && pnpm --recursive --workspace-concurrency=1 exec pnpm run link",
"lint": "eslint packages/*/src/**",
"release": "pnpm clean && pnpm build && pnpm test && pnpm publish --recursive && pnpm exec changeset tag && pnpm install",
"release:version": "pnpm changeset version && pnpm install",
"test": "pnpm --recursive --workspace-concurrency 1 test",
"watch": "pnpm --parallel watch"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/jest": "^30.0.0",
"@types/less": "^3.0.8",
"@types/lodash": "^4.17.21",
"@types/node": "24",
"@types/pluralize": "0.0.33",
"@types/url-parse": "^1.4.11",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^29.5.0",
"glob": "^13.0.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"maven": "github:karlvr/node-maven",
"openapi-types": "^12.1.3",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0"
},
"dependencies": {
"@openapi-generator-plus/indexed-type": "link:../../Library/pnpm/global/5/node_modules/@openapi-generator-plus/indexed-type",
"@openapi-generator-plus/testing": "^2.26.0",
"@openapi-generator-plus/types": "link:../../Library/pnpm/global/5/node_modules/@openapi-generator-plus/types",
"@openapi-generator-plus/utils": "link:../../Library/pnpm/global/5/node_modules/@openapi-generator-plus/utils",
"types": "link:../../Library/pnpm/global/5/node_modules/@openapi-generator-plus/types"
}
}