@fluidframework/presence 2.93.0 → 2.100.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/lib/tsdoc-metadata.json +11 -0
- package/package.json +12 -9
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.58.1"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/presence",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.100.0",
|
|
4
4
|
"description": "A component for lightweight data sharing within a single session",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -61,19 +61,19 @@
|
|
|
61
61
|
"!**/test/**"
|
|
62
62
|
],
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@fluid-internal/presence-definitions": "~2.
|
|
65
|
-
"@fluid-internal/presence-runtime": "~2.
|
|
66
|
-
"@fluidframework/core-utils": "~2.
|
|
67
|
-
"@fluidframework/fluid-static": "~2.
|
|
68
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
64
|
+
"@fluid-internal/presence-definitions": "~2.100.0",
|
|
65
|
+
"@fluid-internal/presence-runtime": "~2.100.0",
|
|
66
|
+
"@fluidframework/core-utils": "~2.100.0",
|
|
67
|
+
"@fluidframework/fluid-static": "~2.100.0",
|
|
68
|
+
"@fluidframework/runtime-definitions": "~2.100.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
72
72
|
"@biomejs/biome": "~2.4.5",
|
|
73
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
74
|
-
"@fluid-tools/build-cli": "^0.
|
|
73
|
+
"@fluid-internal/mocha-test-setup": "~2.100.0",
|
|
74
|
+
"@fluid-tools/build-cli": "^0.65.0",
|
|
75
75
|
"@fluidframework/build-common": "^2.0.3",
|
|
76
|
-
"@fluidframework/build-tools": "^0.
|
|
76
|
+
"@fluidframework/build-tools": "^0.65.0",
|
|
77
77
|
"@fluidframework/eslint-config-fluid": "^9.0.0",
|
|
78
78
|
"@microsoft/api-extractor": "7.58.1",
|
|
79
79
|
"concurrently": "^9.2.1",
|
|
@@ -127,6 +127,9 @@
|
|
|
127
127
|
"check:exports:esm:legacy.alpha": "api-extractor run --config api-extractor/api-extractor-lint-legacy.alpha.esm.json",
|
|
128
128
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
129
129
|
"check:format": "npm run check:biome",
|
|
130
|
+
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
|
|
131
|
+
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
|
|
132
|
+
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
130
133
|
"ci:build:docs": "api-extractor run",
|
|
131
134
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
132
135
|
"eslint": "eslint --quiet --format stylish src",
|