-
Notifications
You must be signed in to change notification settings - Fork 535
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 KB
/
package.json
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
{
"name": "@fluidframework/bundle-size-tools",
"version": "0.52.0",
"description": "Utility for analyzing bundle size regressions",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "build-tools/packages/bundle-size-tools"
},
"license": "MIT",
"author": "Microsoft and contributors",
"exports": {
".": {
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "fluid-build --task build",
"build:compile": "fluid-build --task compile",
"build:copy": "copyfiles -u 1 \"src/**/*.fsl\" dist",
"build:docs": "api-extractor run --local",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"ci:build:docs": "api-extractor run",
"clean": "rimraf --glob dist \"*.tsbuildinfo\" _api-extractor-temp \"*.build.log\"",
"compile": "fluid-build . --task compile",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix",
"format": "npm run format:biome",
"format:biome": "biome check --write .",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc"
},
"dependencies": {
"azure-devops-node-api": "^11.2.0",
"jszip": "^3.10.1",
"msgpack-lite": "^0.1.26",
"pako": "^2.1.0",
"typescript": "~5.4.5",
"webpack": "^5.95.0"
},
"devDependencies": {
"@biomejs/biome": "~1.9.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools-bin": "npm:@fluidframework/build-tools@~0.49.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@microsoft/api-extractor": "^7.47.11",
"@types/msgpack-lite": "^0.1.11",
"@types/node": "^18.19.59",
"@types/pako": "^2.0.3",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"eslint": "~8.57.0",
"rimraf": "^4.4.1"
}
}