forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.38 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
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
116
{
"name": "@fluentui/web-components",
"description": "A library of Fluent Web Components",
"version": "3.0.0-beta.69",
"author": {
"name": "Microsoft",
"url": "https://discord.gg/FcSNfg4"
},
"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/dts/",
"dist/esm/",
"dist/*.js",
"dist/*.d.ts"
],
"exports": {
".": {
"types": "./dist/dts/index.d.ts",
"default": "./dist/esm/index.js"
},
"./utilities.js": {
"types": "./dist/dts/utils/index.d.ts",
"default": "./dist/esm/utils/index.js"
},
"./*/define.js": {
"types": "./dist/dts/*/*.define.d.ts",
"default": "./dist/esm/*/*.define.js"
},
"./*/definition.js": {
"types": "./dist/dts/*/*.definition.d.ts",
"default": "./dist/esm/*/*.definition.js"
},
"./*/options.js": {
"types": "./dist/dts/*/*.options.d.ts",
"default": "./dist/esm/*/*.options.js"
},
"./*/styles.js": {
"types": "./dist/dts/*/*.styles.d.ts",
"default": "./dist/esm/*/*.styles.js"
},
"./*/template.js": {
"types": "./dist/dts/*/*.template.d.ts",
"default": "./dist/esm/*/*.template.js"
},
"./*/index.js": {
"types": "./dist/dts/*/index.d.ts",
"default": "./dist/esm/*/index.js"
},
"./*.js": {
"types": "./dist/dts/*/define.d.ts",
"default": "./dist/esm/*/define.js"
},
"./package.json": "./package.json"
},
"sideEffects": [
"./dist/esm/**/define.js",
"./dist/web-components.js",
"./dist/web-components.min.js"
],
"scripts": {
"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",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier -w 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",
"e2e": "playwright test",
"test:dev": "playwright test"
},
"devDependencies": {
"@microsoft/fast-element": "2.0.0",
"@tensile-perf/web-components": "~0.2.0",
"@storybook/html": "7.6.20",
"@storybook/html-webpack5": "7.6.20",
"chromedriver": "^125.0.0"
},
"dependencies": {
"@microsoft/fast-web-utilities": "^6.0.0",
"@fluentui/tokens": "1.0.0-alpha.18",
"tabbable": "^6.2.0",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@microsoft/fast-element": "^2.0.0-beta.26 || ^2.0.0"
},
"beachball": {
"disallowedChangeTypes": [
"major",
"minor",
"patch"
],
"tag": "beta"
}
}