-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.29 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "swagger-typescript-api-es",
"version": "0.0.13",
"license": "MIT",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"sideEffects": false,
"bin": {
"swagger-typescript-api-es": "./bin/cli.mjs"
},
"files": [
"bin",
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild && cp -r ./templates ./dist",
"dev": "unbuild --stub",
"test:cli": "node dist/cli.mjs",
"test:cli1": "esno src/cli.ts",
"lint": "eslint --ext .ts,.tsx src --color",
"start": "esno play/test.ts",
"test": "vitest",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"changelog": "npx changeloggithub@latest --all true && git add CHANGELOG.md && git commit -m 'chore: update CHANGELOG.md'",
"prepublishOnly": "npm run build",
"release": "bumpp -r && npm publish"
},
"author": "hunghg255",
"devDependencies": {
"@hunghg255/eslint-config-ts": "^0.0.8",
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.3",
"@types/prettier": "^3.0.0",
"@types/swagger-schema-official": "^2.0.25",
"@types/swagger2openapi": "^7.0.4",
"bumpp": "^9.2.1",
"esno": "^0.16.3",
"git-scm-hooks": "^0.0.7",
"tslib": "^2.6.2",
"unbuild": "^2.0.0",
"verify-commit-msg": "^0.0.10",
"vitest": "^0.34.6"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"keywords": [],
"homepage": "https://github.com/hunghg255/swagger-typescript-api-es",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/swagger-typescript-api-es"
},
"bugs": {
"url": "https://github.com/hunghg255/swagger-typescript-api-es/issues"
},
"dependencies": {
"cosmiconfig": "^9.0.0",
"eta": "^2.2.0",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"make-dir": "^4.0.0",
"nanoid": "^5.0.6",
"node-emoji": "^2.1.3",
"node-fetch-h2": "^2.3.1-0",
"prettier": "^3.2.5",
"swagger-schema-official": "^2.0.0-bab6bed",
"swagger2openapi": "^7.0.8",
"typescript": "^5.3.3",
"unprompts": "^1.0.11",
"unreadconfig": "^0.0.13"
}
}