@aws-amplify/datastore 5.1.2 → 5.1.3-context-cogs.077566e.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +74 -74
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@aws-amplify/datastore",
|
|
3
|
+
"version": "5.1.3-context-cogs.077566e.0+077566e",
|
|
4
|
+
"description": "AppSyncLocal support for aws-amplify",
|
|
5
|
+
"main": "./dist/cjs/index.js",
|
|
6
|
+
"module": "./dist/esm/index.mjs",
|
|
7
|
+
"typings": "./dist/esm/index.d.ts",
|
|
8
|
+
"react-native": "./dist/cjs/index.js",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"./dist/cjs/datastore/datastore.js",
|
|
14
|
+
"./dist/esm/datastore/datastore.mjs"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
|
|
18
|
+
"test:size": "size-limit",
|
|
19
|
+
"build-with-test": "npm test && npm run build",
|
|
20
|
+
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
|
|
21
|
+
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
|
|
22
|
+
"build:watch": "npm run build:esm-cjs -- --watch",
|
|
23
|
+
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
|
|
24
|
+
"clean": "npm run clean:size && rimraf dist lib lib-esm",
|
|
25
|
+
"clean:size": "rimraf dual-publish-tmp tmp*",
|
|
26
|
+
"format": "echo \"Not implemented\" && npm run ts-coverage",
|
|
27
|
+
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage",
|
|
28
|
+
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
|
|
29
|
+
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 92.05"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/aws-amplify/amplify-js.git"
|
|
34
|
+
},
|
|
35
|
+
"author": "Amazon Web Services",
|
|
36
|
+
"license": "Apache-2.0",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/aws/aws-amplify/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://aws-amplify.github.io/",
|
|
41
|
+
"files": [
|
|
42
|
+
"dist/cjs",
|
|
43
|
+
"dist/esm",
|
|
44
|
+
"src"
|
|
45
|
+
],
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@aws-amplify/api": "6.3.22-context-cogs.077566e.0+077566e",
|
|
48
|
+
"@aws-amplify/api-graphql": "4.8.3-context-cogs.077566e.0+077566e",
|
|
49
|
+
"buffer": "4.9.2",
|
|
50
|
+
"idb": "5.0.6",
|
|
51
|
+
"immer": "9.0.6",
|
|
52
|
+
"rxjs": "^7.8.1",
|
|
53
|
+
"ulid": "^2.3.0"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"@aws-amplify/core": "6.15.1-context-cogs.077566e.0+077566e"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@aws-amplify/core": "6.15.1-context-cogs.077566e.0+077566e",
|
|
60
|
+
"@aws-amplify/react-native": "1.3.2-context-cogs.077566e.0+077566e",
|
|
61
|
+
"@types/uuid-validate": "^0.0.1",
|
|
62
|
+
"dexie": "3.2.2",
|
|
63
|
+
"dexie-export-import": "1.0.3",
|
|
64
|
+
"fake-indexeddb": "^4.0.2",
|
|
65
|
+
"graphql": "15.8.0"
|
|
66
|
+
},
|
|
67
|
+
"size-limit": [
|
|
68
|
+
{
|
|
69
|
+
"name": "DataStore (top-level class)",
|
|
70
|
+
"path": "./dist/esm/index.mjs",
|
|
71
|
+
"import": "{ Amplify, DataStore }",
|
|
72
|
+
"limit": "65.25 kB"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"gitHead": "077566e885ed4bd8cc94a6e7ef7f3eda96ec161a"
|
|
76
76
|
}
|