-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.91 KB
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
{
"name": "nestjs-decorators",
"version": "1.6.1",
"description": "TypeScript decorators for NestJS: logging, error handling, and validation",
"author": "Vlad Goncharov <vlad.goncharov@neolab.com>",
"license": "AGPL-3.0",
"homepage": "https://github.com/NeoLabHQ/nestjs-decorators#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/NeoLabHQ/nestjs-decorators.git"
},
"bugs": {
"url": "https://github.com/NeoLabHQ/nestjs-decorators/issues"
},
"exports": {
".": "./dist/index.cjs",
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "concurrently -c auto --names build,test npm:build:watch npm:test:watch",
"lint": "npm run typecheck",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"commit": "cz help",
"cz": "git add . && cz"
},
"dependencies": {
"base-decorators": "^0.2.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.0.3",
"axios": "^1.13.2",
"bumpp": "^10.3.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"concurrently": "^9.2.1",
"cz-conventional-changelog": "^3.3.0",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"peerDependencies": {
"@nestjs/common": "*",
"class-validator": ">=0.14.0"
},
"peerDependenciesMeta": {
"class-validator": {
"optional": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"decorator",
"decorators",
"library",
"nestjs",
"typescript",
"utility",
"logger",
"catch",
"validate",
"validation",
"error-handling"
]
}