@candlerip/shared3 0.0.104 → 0.0.106
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -4
- package/src/backend/database/index.d.ts +3 -0
- package/src/backend/database/index.js +3 -0
- package/src/backend/database/model/index.d.ts +1 -0
- package/src/backend/database/model/index.js +1 -0
- package/src/backend/database/mutation/index.d.ts +1 -0
- package/src/backend/database/mutation/index.js +1 -0
- package/src/backend/index.d.ts +5 -0
- package/src/backend/index.js +5 -0
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@candlerip/shared3",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.106",
|
4
4
|
"type": "module",
|
5
|
-
"main": "src/index.js",
|
6
5
|
"exports": {
|
7
|
-
"
|
8
|
-
"./
|
6
|
+
".": "./src/index.js",
|
7
|
+
"./aws/": "./src/aws/index.js",
|
8
|
+
"./backend/": "./src/backend/index.js"
|
9
9
|
},
|
10
10
|
"bin": {
|
11
11
|
"crs-cdk-deploy": "./_devops/cdk/cdk-deploy.sh",
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './translation/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './translation/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './translation/index.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './translation/index.js';
|