This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "@omer-x/ts-openapi-interface-generator",
"version": "1.0.0",
"description": "OpenAPI interface generator for TypeScript",
"keywords": [
"typescript",
"openapi",
"interface",
"generator",
"codegen"
],
"repository": {
"type": "git",
"url": "git+https://github.com/omermecitoglu/ts-openapi-interface-generator.git"
},
"bugs": {
"url": "https://github.com/omermecitoglu/ts-openapi-interface-generator/issues"
},
"homepage": "https://github.com/omermecitoglu/ts-openapi-interface-generator#readme",
"private": false,
"publishConfig": {
"access": "public"
},
"author": {
"name": "Omer Mecitoglu",
"email": "omer.mecitoglu@gmail.com",
"url": "https://omermecitoglu.github.io"
},
"license": "MIT",
"bin": {
"generate-service-interfaces": "./bin/index.js"
},
"files": [
"bin/"
],
"scripts": {
"prebuild": "ts-unused-exports tsconfig.json",
"build": "webpack build --progress --mode=production",
"dev": "webpack build --progress --mode=development --watch"
},
"dependencies": {
"handlebars": "^4.7.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"@omer-x/eslint-config": "^1.0.5",
"@types/node": "^20.11.24",
"@types/yargs": "^17.0.32",
"raw-loader": "^4.0.2",
"ts-loader": "^9.5.1",
"ts-unused-exports": "^10.0.1",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}