-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.31 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"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": "[email protected]"
},
"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": {
"postinstall": "husky install",
"clean": "lerna run clean --stream",
"docs:generate": "./scripts/generate-docs.sh",
"refresh": "./scripts/refresh-data.sh",
"lint": "biome lint --write .",
"format": "biome check --write .",
"build": "node ./scripts/generate-ajv-validator.js && lerna run build --stream --scope '@nahkies/*'",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"integration:generate": "node ./scripts/generate.mjs",
"integration:validate": "lerna run validate --stream",
"e2e:generate": "yarn workspace e2e clean && yarn workspace e2e generate",
"e2e:validate": "yarn workspace e2e build && yarn workspace e2e test",
"ci-build": "yarn build",
"ci-test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"ci-lint": "biome ci .",
"ci-pipeline": "./scripts/ci-pipeline.sh",
"publish:alpha": "./scripts/publish.alpha.sh",
"publish:release": "./scripts/publish.release.sh"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/core": "^1.10.4",
"@swc/jest": "^0.2.37",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.10.5",
"husky": "^9.1.7",
"jest": "^30.0.0-alpha.6",
"lerna": "^8.1.9",
"lint-staged": "^15.3.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"typescript": "~5.7.2"
},
"workspaces": [
"packages/*",
"integration-tests/*",
"e2e"
],
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"yarn biome lint --write --no-errors-on-unmatched",
"yarn biome check --write --no-errors-on-unmatched"
],
"*.md": [
"sh -c 'yarn docs:generate'"
]
},
"engines": {
"node": ">=20 <23"
},
"packageManager": "[email protected]"
}