-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.44 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
{
"name": "@hedger/nestjs-encryption",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"version": "0.1.5",
"description": "Encryption Module for NestJS.",
"author": {
"name": "Nicolas Hedger",
"email": "[email protected]"
},
"license": "MIT",
"funding": "https://github.com/sponsors/nhedger",
"homepage": "https://github.com/nhedger/nestjs-encryption#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nhedger/nestjs-encryption.git"
},
"bugs": "https://github.com/nhedger/nestjs-encryption/issues",
"keywords": [
"nestjs",
"encryption",
"crypto"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"require": "./dist/lib/index.cjs",
"import": "./dist/lib/index.mjs"
}
},
"main": "./dist/lib/index.mjs",
"module": "./dist/lib/index.mjs",
"types": "./dist/lib/index.d.ts",
"files": [
"dist"
],
"bin": {
"nestjs-encryption-keygen": "./dist/cli/keygen.mjs"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"format": "rome format --write .",
"lint": "rome check .",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "lefthook install"
},
"devDependencies": {
"@nestjs/common": "^10.2.1",
"@vitest/coverage-v8": "^0.34.2",
"lefthook": "^1.4.9",
"rome": "^12.1.3",
"typescript": "^5.1.6",
"unbuild": "^2.0.0",
"vitest": "^0.34.2"
},
"peerDependencies": {
"@nestjs/common": "^10 || ^9"
}
}