-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "swagger-axios-codegen",
"version": "0.16.14",
"main": "./dist/index",
"typings": "./dist/",
"author": "Manwei Leung <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/Manweill/swagger-axios-codegen.git",
"type": "git"
},
"keywords": [
"swagger",
"axios",
"typescript",
"generator",
"codegen"
],
"scripts": {
"build": "rimraf -rf ./dist && tsc -p ./src",
"build-win": "rd /s /q dist && tsc -p ./src",
"prestart": "npm run build",
"precommit": "prettier --write --config .prettierrc ./src/*.ts",
"start": "node ./dist/index",
"dev": "tsc --watch -p ./src ",
"prepublish": "npm run build"
},
"dependencies": {
"axios": "^1.6.0",
"camelcase": "^5.0.0",
"multimatch": "^4.0.0",
"pascalcase": "^0.1.1",
"prettier": "^2.7.1",
"structured-log": "^0.2.0"
},
"devDependencies": {
"@types/node": "16",
"@types/prettier": "^2.7.2",
"rimraf": "^5.0.5",
"tslint": "^5.10.0",
"typescript": "^4.8.3"
}
}