-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "typed-oax",
"version": "0.0.6",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "andoshin11 <[email protected]>",
"license": "MIT",
"keywords": [
"swagger",
"openapi",
"codegen",
"typescript",
"express"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andoshin11/typed-oax.git"
},
"bugs": {
"url": "https://github.com/andoshin11/typed-oax/issues"
},
"bin": {
"oax": "./bin/gen.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "yarn run build && node lib/index.js",
"test:type": "tsc --noEmit"
},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/commander": "^2.12.2",
"@types/express": "^4.17.2",
"@types/js-yaml": "^3.12.2",
"@types/node": "^13.7.7",
"@types/prettier": "^1.19.0",
"openapi3-ts": "^1.3.0",
"typescript": "4.2.2"
},
"dependencies": {
"@squelette/core": "^1.1.0",
"chokidar": "^3.3.1",
"commander": "^4.1.1",
"js-yaml": "^3.13.1",
"prettier": "^1.19.1"
}
}