-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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
{
"name": "openapi-codegen",
"version": "0.0.1",
"description": "OpenAPI code generator framework",
"repository": "https://github.com/fabien0102/openapi-codegen",
"author": "Fabien Bernard",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "vitest",
"check": "pnpm /^check:.*/",
"check:types": "tsc --noEmit",
"check:lint": "eslint .",
"check:prettier": "prettier --check .",
"fix": "pnpm /^fix:.*/",
"fix:lint": "eslint --fix .",
"fix:prettier": "prettier --write .",
"build": "pnpm /^build:.*/",
"build:plugin:ts": "pnpm --filter=@openapi-codegen/typescript build",
"build:cli": "pnpm --filter=@openapi-codegen/cli build",
"all-contrib": "all-contributors"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^20.11.30",
"all-contributors-cli": "^6.26.1",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"got": "^14.2.1",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.4"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}