forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.01 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
{
"name": "@fluid-example/tree-cli-app",
"version": "2.72.0",
"private": true,
"description": "SharedTree CLI app demo",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "examples/apps/tree-cli-app"
},
"license": "MIT",
"author": "Microsoft and contributors",
"type": "module",
"scripts": {
"app": "node ./lib/index.js",
"build": "fluid-build . --task build",
"build:compile": "fluid-build . --task compile",
"build:esnext": "tsc --project ./tsconfig.json",
"build:test": "npm run build:test:esm",
"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",
"test": "npm run test:mocha",
"test:mocha": "npm run test:mocha:esm",
"test:mocha:esm": "mocha",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha"
},
"dependencies": {
"@fluidframework/core-interfaces": "workspace:~",
"@fluidframework/id-compressor": "workspace:~",
"@fluidframework/runtime-utils": "workspace:~",
"@fluidframework/tree": "workspace:~",
"@sinclair/typebox": "^0.34.13"
},
"devDependencies": {
"@biomejs/biome": "~1.9.3",
"@fluid-internal/mocha-test-setup": "workspace:~",
"@fluidframework/build-tools": "^0.58.3",
"@fluidframework/eslint-config-fluid": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.0",
"cross-env": "^7.0.3",
"eslint": "~8.57.1",
"mocha": "^10.8.2",
"mocha-multi-reporters": "^1.5.1",
"rimraf": "^4.4.0",
"typescript": "~5.4.5"
},
"typeValidation": {
"disabled": true
}
}