forked from Manweill/swagger-axios-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 874 Bytes
/
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
{
"name": "@odit/swagger-axios-codegen",
"version": "1.0.0",
"main": "./dist/index",
"typings": "./dist/",
"authors": [
"ODIT.Services <[email protected]>"
],
"license": "MIT",
"repository": {
"url": "https://github.com/odit-services/swagger-axios-codegen.git",
"type": "git"
},
"keywords": [
"swagger",
"axios",
"typescript",
"generator",
"codegen"
],
"scripts": {
"build": "rimraf -rf ./dist && tsc -p ./src",
"prestart": "npm run build",
"precommit": "prettier --write ./src/**/*.ts",
"start": "node ./dist/index",
"watch": "tsc --watch -p ./src ",
"prepublish": "npm run build"
},
"dependencies": {
"axios": "^1.5.0",
"prettier": "^3.0.3"
},
"devDependencies": {
"@types/node": "^20.6.2",
"rimraf": "^5.0.1",
"scule": "^1.0.0",
"typescript": "^5.2.2"
}
}