forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.9 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.9 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@fluid-example/import-testing",
"version": "2.93.0",
"private": true,
"description": "import-testing",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/utils/import-testing"
},
"license": "MIT",
"author": "Microsoft and contributors",
"type": "module",
"exports": {
"./crossPackageSchema/node16": {
"import": "./lib/crossPackage/node16/schemaDefinitions.js",
"require": "./dist/crossPackage/node16/schemaDefinitions.js"
},
"./crossPackageSchema/bundler": {
"import": "./lib/crossPackage/bundler/schemaDefinitions.js"
}
},
"scripts": {
"build": "fluid-build . --task build",
"build:commonjs": "fluid-build . --task commonjs",
"build:compile": "fluid-build . --task compile",
"build:esnext": "concurrently \"npm:build:esnext:*\"",
"build:esnext:crossPackage:bundler": "tsc --project ./tsconfig.crossPackage.bundler.json",
"build:esnext:crossPackage:node16": "tsc --project ./tsconfig.crossPackage.node16.json",
"build:esnext:main": "tsc --project ./tsconfig.json",
"build:test": "npm run build:test:esm && npm run build:test:cjs",
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
"eslint": "eslint --quiet --format stylish src",
"eslint:fix": "eslint --quiet --format stylish src --fix --fix-type problem,suggestion,layout",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"lint": "fluid-build . --task lint",
"lint:fix": "fluid-build . --task eslint:fix --task format",
"place:cjs:package-stub": "copyfiles -f ./src/cjs/package.json ./dist",
"test": "npm run test:mocha",
"test:mocha": "npm run test:mocha:esm && npm run test:mocha:cjs",
"test:mocha:cjs": "cross-env FLUID_TEST_MODULE_SYSTEM=CJS mocha",
"test:mocha:esm": "mocha",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"tsc": "concurrently \"npm:tsc:*\"",
"tsc:crossPackage:node16": "fluid-tsc commonjs --project ./tsconfig.crossPackage.node16.cjs.json && npm run place:cjs:package-stub",
"tsc:main": "fluid-tsc commonjs --project ./tsconfig.cjs.json && npm run place:cjs:package-stub"
},
"dependencies": {
"@fluid-internal/client-utils": "workspace:~",
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/runtime-utils": "workspace:~",
"@fluidframework/tree": "workspace:~",
"fluid-framework": "workspace:~"
},
"devDependencies": {
"@biomejs/biome": "~2.4.5",
"@fluid-example/typescript-versions-host": "workspace:~",
"@fluid-internal/mocha-test-setup": "workspace:~",
"@fluidframework/build-tools": "catalog:buildTools",
"@fluidframework/eslint-config-fluid": "catalog:eslint",
"@types/mocha": "^10.0.10",
"@types/node": "catalog:types",
"concurrently": "^9.2.1",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"eslint": "catalog:eslint",
"jiti": "^2.6.1",
"mocha": "^11.7.5",
"mocha-multi-reporters": "^1.5.1",
"rimraf": "^6.1.3",
"typescript": "~5.4.5"
},
"fluidBuild": {
"tasks": {
"build:esnext:crossPackage:bundler": [
"^api-extractor:esnext",
"^build:esnext"
],
"build:esnext:crossPackage:node16": [
"^api-extractor:esnext",
"^build:esnext"
],
"build:esnext:main": [
"^api-extractor:esnext",
"^build:esnext"
],
"build:test:cjs": [
"tsc:crossPackage:node16",
"tsc:main"
],
"build:test:esm": [
"build:esnext:crossPackage:bundler",
"build:esnext:crossPackage:node16",
"build:esnext:main"
],
"tsc:crossPackage:node16": [
"^api-extractor:commonjs",
"^tsc"
],
"tsc:main": [
"^api-extractor:commonjs",
"^tsc"
]
}
},
"typeValidation": {
"disabled": true
}
}