-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.82 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
{
"name": "poizoncc-openapi",
"version": "0.1.1",
"description": "Форк библиотеки с правками",
"author": "Andrey Koryakovstev",
"contributors": [
{
"name": "Ferdi Koomen",
"url": "https://github.com/ferdikoomen"
}
],
"homepage": "https://github.com/poizoncc/openapi-codegen",
"license": "MIT",
"main": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"openapi": "bin/index.js"
},
"files": [
"bin/index.js",
"dist/index.js",
"types/index.d.ts"
],
"scripts": {
"clean": "rimraf ./dist ./test/generated ./node_modules/.cache",
"build": "NODE_ENV=development rolldown --config rolldown.config.mjs",
"build:watch": "NODE_ENV=development rolldown --config rolldown.config.mjs --watch",
"release": "NODE_ENV=production rolldown --config rolldown.config.mjs",
"validate": "tsc --project tsconfig.json --noEmit",
"test:generate": "pnpm run build && node -e \"require('./dist/index').generate({ input: './test/spec/v3.json', output: './test/generated' })\"",
"prepublishOnly": "pnpm run clean && pnpm run release"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.3.3",
"camelcase": "^9.0.0",
"commander": "^14.0.3",
"fs-extra": "^11.3.4",
"handlebars": "^4.7.9"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "25.5.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"rolldown": "1.0.0-rc.12",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "6.0.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"rolldown",
"unrs-resolver"
]
},
"overrides": {}
}