-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.11 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.11 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
{
"name": "nx-openapi-codegen",
"version": "0.0.29",
"homepage": "https://github.com/dankreiger/nx-openapi-codegen",
"bugs": {
"url": "https://github.com/dankreiger/nx-openapi-codegen/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dankreiger/nx-openapi-codegen.git"
},
"license": "MIT",
"author": "Dan Kreiger <dankreiger@gmail.com>",
"type": "module",
"module": "src/index.ts",
"bin": "dist/index.js",
"files": [
"src"
],
"scripts": {
"build": "bun build src/index.ts --outdir=dist --target bun",
"check": "bunx biome check",
"check:fix": "bunx biome check --write",
"commit": "cz",
"dev": "bun run src/index.ts",
"dev:skip-prompts": "RUN_MODE=skip-prompts bun run src/index.ts",
"refresh": "bunx rimraf .nx bun.lockb node_modules && bun install",
"release": "dotenv release-it --",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"typecheck": "bunx tsc --noEmit",
"typecheck:watch": "bunx tsc --noEmit --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@commitlint/prompt-cli": "19.8.0",
"@inquirer/prompts": "7.4.0",
"@inquirer/testing": "2.1.45",
"@release-it/conventional-changelog": "10.0.0",
"@rtk-query/codegen-openapi": "2.0.0",
"@types/bun": "1.2.8",
"@types/lodash-es": "4.17.12",
"@types/package-name-regex": "2.0.2",
"async-toolbelt": "0.1.9",
"chalk": "5.4.1",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"dotenv-cli": "8.0.0",
"lefthook": "1.11.5",
"lodash-es": "4.17.21",
"os-name": "6.0.0",
"release-it": "18.1.2",
"replace-in-file": "8.3.0",
"rimraf": "6.0.1",
"rxjs": "7.8.2",
"sort-keys": "5.1.0",
"strong-object": "1.0.1",
"strong-string": "1.0.1",
"type-fest": "4.38.0",
"yaml": "2.7.0",
"zod": "3.24.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"ajv": "8.17.1",
"whatwg-url": "14.1.0"
}
}