-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@openapi-integration/swr-request-generator",
"version": "1.2.2",
"type": "module",
"description": "A tool for generating TypeScript code and interface from swagger by using SWR and axios as client.",
"bin": {
"ts-codegen": "bin/ts-codegen.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"start": "ts-node src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"lint": "eslint src",
"build": "tsup",
"preversion": "pnpm run test && pnpm run lint && pnpm run build",
"release": "bumpp && pnpm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/teobler/swr-request-generator"
},
"author": "teobler",
"license": "MIT",
"bugs": {
"url": "https://github.com/teobler/swr-request-generator/issues"
},
"keywords": [
"swr",
"swagger",
"OpenAPI",
"API-integration",
"code generator",
"interface",
"TypeScript"
],
"homepage": "https://github.com/teobler/swr-request-generator#readme",
"devDependencies": {
"@ts-stack/openapi-spec": "^3.1.5",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.13.0",
"@types/prettier": "2.7.x",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitest/coverage-c8": "^0.28.4",
"bumpp": "^8.2.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"ts-node": "10.9.x",
"tsup": "^6.6.0",
"typescript": "4.9.x",
"vitest": "^0.28.4"
},
"dependencies": {
"axios": "^1.3.2",
"commander": "^10.0.0",
"js-yaml": "^4.1.0",
"moderndash": "^3.1.0",
"prettier": "2.8.x"
},
"peerDependencies": {
"axios": ">=1.1.3",
"swr": ">=2.0.0"
}
}