@dataclouder/conversation-card-nestjs 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +14 -12
package/package.json
CHANGED
@@ -1,27 +1,29 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dataclouder/conversation-card-nestjs",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.3",
|
4
4
|
"description": "NestJS library for cards",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|
7
7
|
"files": [
|
8
|
-
|
8
|
+
"dist"
|
9
9
|
],
|
10
10
|
"scripts": {
|
11
|
-
|
11
|
+
"build": "tsc -p tsconfig.lib.json",
|
12
|
+
"publish": "npm run build && npm version patch && npm publish"
|
12
13
|
},
|
13
|
-
"keywords": [
|
14
|
+
"keywords": [
|
15
|
+
"nestjs",
|
16
|
+
"library"
|
17
|
+
],
|
14
18
|
"author": "dataclouder",
|
15
19
|
"license": "MIT",
|
16
20
|
"peerDependencies": {
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
"mongoose": ">=8.5.1"
|
21
|
+
"@nestjs/common": ">=10.0.0",
|
22
|
+
"@nestjs/core": ">=10.0.0",
|
23
|
+
"rxjs": ">=7.0.0",
|
24
|
+
"mongoose": ">=8.0.0"
|
22
25
|
},
|
23
26
|
"publishConfig": {
|
24
|
-
|
27
|
+
"access": "public"
|
25
28
|
}
|
26
|
-
|
27
|
-
}
|
29
|
+
}
|