-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.92 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.92 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
{
"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": "git+https://github.com/mnahkies/openapi-code-generator.git"
},
"bugs": {
"url": "https://github.com/mnahkies/openapi-code-generator/issues"
},
"scripts": {
"clean": "pnpm run -r clean",
"docs:generate": "node ./scripts/generate-toc.mjs",
"refresh": "./scripts/refresh-data.sh",
"lint": "biome check --fix .",
"build": "node ./scripts/generate-ajv-validator.js && pnpm run -r --workspace-concurrency=4 bundle && tsc -b tsconfig.json",
"build:docs": "pnpm --filter @nahkies/openapi-code-generator-documentation run build",
"build:watch": "tsc -b tsconfig.json -w",
"test": "vitest run",
"integration:clean": "pnpm --filter @integration/* run clean",
"integration:generate": "node ./scripts/generate.mjs",
"integration:validate": "pnpm run -r --filter @integration/* --workspace-concurrency=2 validate",
"e2e:generate": "pnpm --filter e2e run clean && pnpm --filter e2e run generate",
"e2e:validate": "pnpm --filter e2e run build && pnpm --filter e2e run test",
"ci-test": "vitest run --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": {
"@arethetypeswrong/core": "^0.18.2",
"@biomejs/biome": "2.4.15",
"@biomejs/js-api": "4.0.0",
"@biomejs/wasm-nodejs": "2.4.15",
"@commander-js/extra-typings": "^14.0.0",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^22.19.17",
"@vitest/coverage-v8": "4.1.7",
"ajv": "^8.20.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^3.0.1",
"commander": "^14.0.3",
"husky": "^9.1.7",
"json5": "^2.2.3",
"lerna": "^9.0.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"publint": "^0.3.21",
"remark": "^15.0.1",
"remark-toc": "^9.0.0",
"typescript": "^6.0.3",
"vitest": "^4.0.11"
},
"workspaces": [
"packages/*",
"integration-tests/*",
"e2e"
],
"lint-staged": {
"*.{ts,js,tsx,jsx,mts,mjs,cts,cjs}": [
"pnpm exec biome lint --write --no-errors-on-unmatched",
"pnpm exec biome check --write --no-errors-on-unmatched"
],
"*.md": [
"sh -c 'pnpm run docs:generate'"
]
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.5.0+sha512.dbfcc4f81cf48597afd4bc391ffdf12c11f1a9fb83a395bfa6b0a2d9cc2fd8ffebafdb1ccbd529632153f793904c2615b7f09fe1a345473fd1c35845172a8eb1"
}