@fluid-experimental/data-objects 2.0.0-internal.3.1.0 → 2.0.0-internal.3.2.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 +62 -62
package/package.json
CHANGED
|
@@ -1,63 +1,63 @@
|
|
|
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
|
-
}
|
|
2
|
+
"name": "@fluid-experimental/data-objects",
|
|
3
|
+
"version": "2.0.0-internal.3.2.0",
|
|
4
|
+
"description": "A collection of ready to use Fluid Data Objects",
|
|
5
|
+
"homepage": "https://fluidframework.com",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/microsoft/FluidFramework.git",
|
|
9
|
+
"directory": "experimental/framework/data-objects"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "Microsoft and contributors",
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"main": "dist/index.js",
|
|
15
|
+
"module": "lib/index.js",
|
|
16
|
+
"types": "dist/index.d.ts",
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@fluidframework/aqueduct": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
19
|
+
"@fluidframework/common-definitions": "^0.20.1",
|
|
20
|
+
"@fluidframework/common-utils": "^1.1.1",
|
|
21
|
+
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
22
|
+
"@fluidframework/map": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
23
|
+
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.2.0 <2.0.0-internal.4.0.0",
|
|
24
|
+
"events": "^3.1.0"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@fluid-tools/build-cli": "^0.10.0",
|
|
28
|
+
"@fluidframework/build-common": "^1.1.0",
|
|
29
|
+
"@fluidframework/eslint-config-fluid": "^2.0.0",
|
|
30
|
+
"@microsoft/api-extractor": "^7.22.2",
|
|
31
|
+
"@rushstack/eslint-config": "^2.5.1",
|
|
32
|
+
"@types/node": "^14.18.36",
|
|
33
|
+
"concurrently": "^6.2.0",
|
|
34
|
+
"copyfiles": "^2.4.1",
|
|
35
|
+
"cross-env": "^7.0.2",
|
|
36
|
+
"eslint": "~8.6.0",
|
|
37
|
+
"prettier": "~2.6.2",
|
|
38
|
+
"rimraf": "^2.6.2",
|
|
39
|
+
"typescript": "~4.5.5"
|
|
40
|
+
},
|
|
41
|
+
"typeValidation": {
|
|
42
|
+
"disabled": true,
|
|
43
|
+
"version": "2.0.0-internal.2.1.0",
|
|
44
|
+
"broken": {}
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "concurrently npm:build:compile npm:lint",
|
|
48
|
+
"build:commonjs": "npm run tsc",
|
|
49
|
+
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
|
|
50
|
+
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
51
|
+
"build:full": "npm run build",
|
|
52
|
+
"build:full:compile": "npm run build:compile",
|
|
53
|
+
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|
|
54
|
+
"eslint": "eslint --format stylish src",
|
|
55
|
+
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
56
|
+
"format": "npm run prettier:fix",
|
|
57
|
+
"lint": "npm run prettier && npm run eslint",
|
|
58
|
+
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
59
|
+
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
60
|
+
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
61
|
+
"tsc": "tsc"
|
|
62
|
+
}
|
|
63
|
+
}
|