-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 771 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 771 Bytes
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
{
"name": "@grafikart/o2ts",
"version": "0.1.16",
"description": "",
"type": "module",
"main": "dist/generator.js",
"bin": {
"o2ts": "dist/generator.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Grafikart/OpenApiToTS"
},
"files": [
"dist"
],
"scripts": {
"test": "bun test",
"build": "tsc --noEmit false",
"dev": "tsc-watch --onSuccess \"node ./dist/generator.js ./demo/openapi.yml ./demo/openapi.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@readme/openapi-parser": "^4.1.0",
"prettier": "^3.6.2"
},
"devDependencies": {
"@types/bun": "^1.2.18",
"@types/node": "^24.0.10",
"openapi-types": "^12.1.3",
"typescript": "^5.8.3"
}
}