-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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": "typescript-nestjs-swagger-plugin",
"version": "2.0.0",
"description": "@nestjs/swagger ttypescript plugin reduce the amount of boilerplate code required.",
"keywords": [
"typescript",
"ttypescript",
"nestjs",
"swagger",
"@nestjs/swagger",
"plugin",
"plugins",
"transform",
"transformer"
],
"homepage": "https://github.com/Val-istar-Guo/typescript-nestjs-swagger-plugin#readme",
"bugs": {
"url": "https://github.com/Val-istar-Guo/typescript-nestjs-swagger-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Val-istar-Guo/typescript-nestjs-swagger-plugin.git"
},
"license": "MIT",
"author": "val.istar.guo <[email protected]>",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rm -rf ./lib/*",
"prepare": "ts-patch install -s & is-ci || husky install",
"prepublishOnly": "npm run build",
"release": "standard-version --no-verify",
"release:alpha": "standard-version --prerelease alpha",
"watch": "NODE_ENV=development ttsc -w"
},
"devDependencies": {
"@buka/eslint-config": "^1.3.0",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@nestjs/swagger": "^7.0.10",
"@rushstack/eslint-patch": "^1.3.2",
"@types/node": "^18.16.18",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"standard-version": "^9.5.0",
"ts-patch": "^3.0.1",
"typescript": "^5.1.5",
"typescript-transform-paths": "^3.4.6"
},
"peerDependencies": {
"@nestjs/swagger": "*",
"typescript": "^5"
}
}