@fluidframework/datastore-definitions 2.0.0-dev-rc.1.0.0.224419 → 2.0.0-dev-rc.1.0.0.225277
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 +48 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/datastore-definitions",
|
|
3
|
-
"version": "2.0.0-dev-rc.1.0.0.
|
|
3
|
+
"version": "2.0.0-dev-rc.1.0.0.225277",
|
|
4
4
|
"description": "Fluid data store definitions",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -16,23 +16,63 @@
|
|
|
16
16
|
".": {
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./alpha": {
|
|
21
|
+
"import": {
|
|
22
|
+
"types": "./lib/datastore-definitions-alpha.d.mts",
|
|
23
|
+
"default": "./lib/index.mjs"
|
|
24
|
+
},
|
|
25
|
+
"require": {
|
|
26
|
+
"types": "./dist/datastore-definitions-alpha.d.ts",
|
|
27
|
+
"default": "./dist/index.cjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"./beta": {
|
|
31
|
+
"import": {
|
|
32
|
+
"types": "./lib/datastore-definitions-beta.d.mts",
|
|
33
|
+
"default": "./lib/index.mjs"
|
|
34
|
+
},
|
|
35
|
+
"require": {
|
|
36
|
+
"types": "./dist/datastore-definitions-beta.d.ts",
|
|
37
|
+
"default": "./dist/index.cjs"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"./internal": {
|
|
41
|
+
"import": {
|
|
42
|
+
"types": "./lib/index.d.mts",
|
|
43
|
+
"default": "./lib/index.mjs"
|
|
44
|
+
},
|
|
45
|
+
"require": {
|
|
46
|
+
"types": "./dist/index.d.ts",
|
|
47
|
+
"default": "./dist/index.cjs"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"./public": {
|
|
51
|
+
"import": {
|
|
52
|
+
"types": "./lib/datastore-definitions-public.d.mts",
|
|
53
|
+
"default": "./lib/index.mjs"
|
|
54
|
+
},
|
|
55
|
+
"require": {
|
|
56
|
+
"types": "./dist/datastore-definitions-public.d.ts",
|
|
57
|
+
"default": "./dist/index.cjs"
|
|
58
|
+
}
|
|
19
59
|
}
|
|
20
60
|
},
|
|
21
61
|
"main": "dist/index.js",
|
|
22
62
|
"types": "dist/index.d.ts",
|
|
23
63
|
"dependencies": {
|
|
24
|
-
"@fluidframework/container-definitions": "2.0.0-dev-rc.1.0.0.
|
|
25
|
-
"@fluidframework/core-interfaces": "2.0.0-dev-rc.1.0.0.
|
|
26
|
-
"@fluidframework/id-compressor": "2.0.0-dev-rc.1.0.0.
|
|
64
|
+
"@fluidframework/container-definitions": "2.0.0-dev-rc.1.0.0.225277",
|
|
65
|
+
"@fluidframework/core-interfaces": "2.0.0-dev-rc.1.0.0.225277",
|
|
66
|
+
"@fluidframework/id-compressor": "2.0.0-dev-rc.1.0.0.225277",
|
|
27
67
|
"@fluidframework/protocol-definitions": "^3.1.0-223007",
|
|
28
|
-
"@fluidframework/runtime-definitions": "2.0.0-dev-rc.1.0.0.
|
|
68
|
+
"@fluidframework/runtime-definitions": "2.0.0-dev-rc.1.0.0.225277"
|
|
29
69
|
},
|
|
30
70
|
"devDependencies": {
|
|
31
71
|
"@arethetypeswrong/cli": "^0.13.3",
|
|
32
72
|
"@fluid-tools/build-cli": "0.29.0-222379",
|
|
33
73
|
"@fluidframework/build-common": "^2.0.3",
|
|
34
74
|
"@fluidframework/build-tools": "0.29.0-222379",
|
|
35
|
-
"@fluidframework/datastore-definitions-previous": "npm:@fluidframework/datastore-definitions@2.0.0-internal.
|
|
75
|
+
"@fluidframework/datastore-definitions-previous": "npm:@fluidframework/datastore-definitions@2.0.0-internal.8.0.0",
|
|
36
76
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
37
77
|
"@microsoft/api-extractor": "^7.38.3",
|
|
38
78
|
"copyfiles": "^2.4.1",
|
|
@@ -53,11 +93,7 @@
|
|
|
53
93
|
}
|
|
54
94
|
},
|
|
55
95
|
"typeValidation": {
|
|
56
|
-
"broken": {
|
|
57
|
-
"InterfaceDeclaration_IFluidDataStoreRuntime": {
|
|
58
|
-
"backCompat": false
|
|
59
|
-
}
|
|
60
|
-
}
|
|
96
|
+
"broken": {}
|
|
61
97
|
},
|
|
62
98
|
"scripts": {
|
|
63
99
|
"api": "fluid-build . --task api",
|
|
@@ -66,7 +102,7 @@
|
|
|
66
102
|
"build:compile": "fluid-build . --task compile",
|
|
67
103
|
"build:docs": "fluid-build . --task api",
|
|
68
104
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
69
|
-
"check:are-the-types-wrong": "attw --pack",
|
|
105
|
+
"check:are-the-types-wrong": "attw --pack . --entrypoints .",
|
|
70
106
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
71
107
|
"ci:build:docs": "api-extractor run",
|
|
72
108
|
"clean": "rimraf --glob dist \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|