-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.07 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
{
"name": "@diexpkg/registry",
"version": "1.0.0",
"description": "NestJS lib, which allowed to setup service and method providers as graph.",
"license": "MIT",
"url": "https://github.com/diexdiersh/registry#readme",
"author": "Alex Diersh",
"repository": {
"type": "git",
"url": "https://github.com/diexdiersh/registry"
},
"keywords": [
"nestjs",
"dynamic-method-invocation",
"registry",
"service-registry",
"modular",
"nest-modules",
"typescript",
"method-provider",
"service-provider"
],
"type": "commonjs",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --project ./tsconfig.build.json --module es2020 --outDir ./dist/mjs --declaration --declarationMap",
"build:cjs": "tsc --project ./tsconfig.build.json --module CommonJS --outDir ./dist/cjs --declaration --declarationMap",
"build:types": "tsc --project ./tsconfig.build.json --module esnext --outDir ./dist/types --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
"test": "jest",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@nestjs/common": "10.2.7",
"@nestjs/core": "10.2.7"
},
"devDependencies": {
"@nestjs/platform-express": "10.4.4",
"@nestjs/testing": "10.3.10",
"@types/jest": "29.5.12",
"@types/node": "22.5.5",
"jest": "29.7.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.3",
"ts-node": "10.9.2",
"typescript": "5.5.3"
},
"publishConfig": {
"access": "public"
}
}