-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.8 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "openapi-code-generator-root",
"private": true,
"version": "0.0.0",
"description": "Mono repo for @nahkies/openapi-code-generator and supporting packages",
"license": "MIT",
"author": {
"name": "Michael Nahkies",
"email": "support@nahkies.co.nz"
},
"homepage": "https://openapi-code-generator.nahkies.co.nz/",
"repository": {
"type": "git",
"url": "https://github.com/mnahkies/openapi-code-generator.git"
},
"bugs": {
"url": "https://github.com/mnahkies/openapi-code-generator/issues"
},
"scripts": {
"clean": "pnpm -r clean",
"docs:generate": "node ./scripts/generate-toc.mjs",
"refresh": "./scripts/refresh-data.sh",
"lint": "biome lint --fix .",
"format": "biome check --write .",
"build": "node ./scripts/generate-ajv-validator.js && tsc -b tsconfig.json",
"build:docs": "pnpm --filter @nahkies/openapi-code-generator-documentation build",
"build:watch": "tsc -b tsconfig.json -w",
"test": "jest",
"integration:clean": "pnpm --filter @integration/* clean",
"integration:generate": "node ./scripts/generate.mjs",
"integration:validate": "pnpm -r --workspace-concurrency=2 validate",
"e2e:generate": "pnpm --filter e2e clean && pnpm --filter e2e generate",
"e2e:validate": "pnpm --filter e2e build && pnpm --filter e2e test",
"ci-test": "jest --coverage",
"ci-lint": "biome ci .",
"ci-pipeline": "./scripts/ci-pipeline.sh",
"ci-pipeline:fast": "FAST=1 ./scripts/ci-pipeline.sh",
"publish:alpha": "./scripts/publish.alpha.sh",
"publish:release": "./scripts/publish.release.sh",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@biomejs/js-api": "4.0.0",
"@biomejs/wasm-nodejs": "2.4.6",
"@commander-js/extra-typings": "^14.0.0",
"@jest/reporters": "^30.2.0",
"@swc/core": "^1.15.18",
"@swc/jest": "^0.2.39",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.7",
"@types/node": "22.16.5",
"ajv": "^8.17.1",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^3.0.1",
"commander": "^14.0.3",
"husky": "^9.1.7",
"jest": "^30.2.0",
"json5": "^2.2.3",
"lerna": "^9.0.5",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"remark": "^15.0.1",
"remark-toc": "^9.0.0",
"typescript": "^5.9.3"
},
"workspaces": [
"packages/*",
"integration-tests/*",
"e2e"
],
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"pnpm biome lint --write --no-errors-on-unmatched",
"pnpm biome check --write --no-errors-on-unmatched"
],
"*.md": [
"sh -c 'pnpm docs:generate'"
]
},
"engines": {
"node": ">=20 <25"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}