-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.55 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.55 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
{
"name": "@fluentui/web-components",
"description": "A library of Fluent Web Components",
"version": "3.0.0-rc.8",
"author": {
"name": "Microsoft",
"url": "https://discord.gg/FcSNfg4"
},
"engines": {
"node": "^22.0.0 || ^24.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui/tree/master/packages/web-components"
},
"bugs": {
"url": "https://github.com/Microsoft/fluentui/issues/new/choose"
},
"type": "module",
"main": "dist/esm/index.js",
"types": "dist/web-components.d.ts",
"unpkg": "dist/web-components.min.js",
"files": [
"*.md",
"dist/esm/",
"dist/*.js",
"dist/*.d.ts",
"custom-elements.json"
],
"exports": {
".": "./dist/esm/index.js",
"./utils/behaviors/*.js": "./dist/esm/utils/behaviors/*.js",
"./utils/*.js": "./dist/esm/utils/*.js",
"./utilities.js": "./dist/esm/utils/index.js",
"./theme/*.js": "./dist/esm/theme/*.js",
"./*/base.js": "./dist/esm/*/*.base.js",
"./*/define.js": "./dist/esm/*/define.js",
"./*/definition.js": "./dist/esm/*/*.definition.js",
"./*/options.js": "./dist/esm/*/*.options.js",
"./*/styles.js": "./dist/esm/*/*.styles.js",
"./*/template.js": "./dist/esm/*/*.template.js",
"./*/index.js": "./dist/esm/*/index.js",
"./*.js": "./dist/esm/*/define.js",
"./custom-elements.json": "./custom-elements.json",
"./package.json": "./package.json"
},
"sideEffects": [
"define.*",
"index-rollup.*",
"./dist/esm/**/define.js",
"./dist/web-components.js",
"./dist/web-components.min.js"
],
"scripts": {
"analyze": "cem analyze",
"verify-packaging": "node ./scripts/verify-packaging",
"type-check": "node ./scripts/type-check",
"benchmark": "yarn clean && yarn compile:benchmark && yarn compile && node ./scripts/run-benchmarks",
"compile": "node ./scripts/compile",
"compile:benchmark": "rollup -c rollup.bench.js",
"clean": "node ./scripts/clean dist",
"generate-api": "api-extractor run --local",
"build": "yarn compile && yarn rollup -c && yarn generate-api && yarn analyze",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier -w src/**/*.{ts,html} src/*.{ts,html} --ignore-path ../../.prettierignore",
"format:check": "yarn format -c",
"code-style": "yarn format:check && yarn lint",
"start": "yarn start-storybook -p 6006 --docs",
"start-storybook": "storybook dev",
"build-storybook": "storybook build -o ./dist/storybook --docs",
"build-storybook:docsite": "cross-env DEPLOY_PATH=/web-components/ storybook build -o ./dist/storybook --docs",
"e2e": "node ./scripts/e2e.js",
"e2e:local": "node ./scripts/e2e.js --ui"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "0.10.10",
"@microsoft/fast-element": "2.0.0",
"@tensile-perf/web-components": "~0.2.2",
"@storybook/html": "9.1.17",
"@storybook/html-vite": "9.1.17",
"@wc-toolkit/cem-validator": "1.0.3",
"@wc-toolkit/cem-inheritance": "1.2.2",
"@wc-toolkit/module-path-resolver": "1.0.0",
"@wc-toolkit/type-parser": "1.0.3",
"chromedriver": "^125.0.0"
},
"dependencies": {
"@microsoft/fast-web-utilities": "^6.0.0",
"@fluentui/tokens": "1.0.0-alpha.23",
"tabbable": "^6.2.0",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@microsoft/fast-element": "^2.0.0"
},
"beachball": {
"disallowedChangeTypes": [
"major",
"minor",
"patch"
],
"tag": "rc"
},
"customElements": "./custom-elements.json"
}