This repository was archived by the owner on Nov 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
211 lines (211 loc) · 9.92 KB
/
package.json
File metadata and controls
211 lines (211 loc) · 9.92 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{
"name": "@crowdstrike/glide-core",
"version": "0.34.1",
"description": "A Web Component design system",
"author": "CrowdStrike UX Team",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/CrowdStrike/glide-core.git"
},
"publishConfig": {
"provenance": true
},
"keywords": [
"web-components",
"lit",
"design-system"
],
"files": [
"dist",
"!dist/*.*.test.*.d.ts",
"!dist/*.*.test.*.js",
"!dist/*.stories.d.ts",
"!dist/*.stories.js",
"!dist/*.test.*.d.ts",
"!dist/*.test.*.js",
"!dist/cem-analyzer-plugins",
"!dist/eslint",
"!dist/figma",
"!dist/icons/storybook.*",
"!dist/playwright",
"!dist/storybook",
"!dist/stylelint",
"!dist/ts-morph"
],
"exports": {
"./*.js": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./package.json": "./package.json",
"./translations/*": null,
"./tooltip.container.js": null,
"./toast.toasts.js": null,
"./styles/variables.css": "./dist/styles/variables.css",
"./styles/fonts.css": "./dist/styles/fonts.css",
"./styles/*": null,
"./library/*": null,
"./icons/*": null,
"./*.styles.js": null
},
"scripts": {
"start": "per-env",
"start:development": "npm-run-all --parallel --print-name start:development:*",
"start:development:cem-analyze": "chokidar ./custom-elements.config.js './src/*.ts' './src/*.*.ts' './src/cem-analyzer-plugins/**' --ignore '**/*stories*' --ignore '**/*test*' --initial --silent --command 'tsc --noCheck --outDir ./dist && NODE_OPTIONS=--no-warnings=ExperimentalWarning cem analyze --config ./custom-elements.config.js --quiet'",
"start:development:cem-analyze:comment": "JSON module imports produce a warning. Remove NODE_OPTIONS when JSON module imports are no longer experimental.",
"start:development:storybook": "storybook dev --config-dir .storybook --no-open --no-version-updates --port 6006",
"start:development:ts-morph": "chokidar ./custom-elements.json './src/ts-morph/**' --initial --silent --command 'tsx ./src/ts-morph/run.ts'",
"start:development:ts-morph:comment:tsx": "Remove `tsx` once Node.js type stripping is available.",
"start:production": "rimraf ./dist && pnpm start:production:cem-analyze && pnpm start:production:ts-morph && npm-run-all --aggregate-output --print-label --parallel start:production:typescript start:production:storybook start:production:esbuild",
"start:production:esbuild": "node ./esbuild.js",
"start:production:cem-analyze": "tsc --noCheck --outDir ./dist && NODE_OPTIONS=--no-warnings=ExperimentalWarning cem analyze --config ./custom-elements.config.js --quiet && git diff --quiet ./custom-elements.json || { echo ERROR: Uncommitted elements manifest changes. Run this command locally and commit the changes.; exit 1; }",
"start:production:figma:dev-resources": "tsx ./src/figma/dev-resources/run.ts",
"start:production:figma:variables": "tsx ./src/figma/variables/run.ts",
"start:production:storybook": "storybook build --config-dir .storybook --disable-telemetry --output-dir ./dist/storybook",
"start:production:ts-morph": "tsx ./src/ts-morph/run.ts && git diff --quiet -- || { echo ERROR: Uncommitted code modifications. Run this command locally and commit the changes.; exit 1; }",
"start:production:typescript": "tsc --noCheck --outDir ./dist",
"format": "per-env",
"format:development": "chokidar '**/*' --ignore 'dist/**' --ignore '.changeset/**' --ignore '.git/**' --ignore 'node_modules/**' --ignore 'pnpm-lock.yaml' --initial --silent --comand 'prettier --write --ignore-unknown {path} && stylelint {path}'",
"format:production": "prettier . --debug-check",
"lint": "per-env",
"lint:development": "npm-run-all --parallel --print-name lint:development:*",
"lint:development:eslint": "chokidar ./eslint-config.js ./src/eslint/** ./src/*.ts ./src/*.*.ts --initial --silent --command 'tsc --noCheck --outDir ./dist && eslint {path} --fix'",
"lint:development:lit-analyzer": "lit-analyzer **/*.ts",
"lint:development:stylelint": "chokidar ./.stylelintrc.js ./src/stylelint/** ./src/*.styles.ts ./src/*.*.styles.ts --initial --silent --command 'tsc --noCheck --outDir ./dist && stylelint {path} --custom-syntax postcss-lit --fix'",
"lint:production": "npm-run-all --aggregate-output --print-label --parallel lint:production:*",
"lint:production:eslint": "tsc --noCheck --outDir ./dist && eslint .",
"lint:production:lit-analyzer": "lit-analyzer **/*.ts",
"lint:production:stylelint": "tsc --noCheck --outDir ./dist && stylelint '**/*.styles.ts' --custom-syntax postcss-lit --no-color",
"test": "per-env",
"test:development": "pnpm test:development:web-test-runner",
"test:development:playwright": "npm-run-all --parallel test:development:playwright:coverage test:development:playwright:ui",
"test:development:playwright:coverage": "http-server ./dist/playwright/coverage-report --port 6008 --silent",
"test:development:playwright:ui": "playwright test --config ./src/playwright/playwright.config.ts --ui-port 6007 --update-snapshots --update-source-method=overwrite",
"test:development:playwright:update": "PLAYWRIGHT_SKIP_COVERAGE=true playwright test --config ./src/playwright/playwright.config.ts --quiet --grep @accessibility --update-snapshots --update-source-method=overwrite --workers 100%",
"test:development:playwright:vite": "vite --config ./src/playwright/vite.config.ts --port 6009",
"test:development:web-test-runner": "web-test-runner --watch",
"test:production": "pnpm start:production:esbuild && npm-run-all --aggregate-output --print-label --parallel test:production:*",
"test:production:playwright": "playwright test --config ./src/playwright/playwright.config.ts --grep '@accessibility|@eslint|@events|@forms|@keyboard|@miscellaneous|@mouse|@stylelint'",
"test:production:web-test-runner": "web-test-runner",
"typecheck": "per-env",
"typecheck:development": "tsc --erasableSyntaxOnly --outDir ./dist -w",
"typecheck:production": "tsc --erasableSyntaxOnly --outDir ./dist",
"postinstall": "is-ci || pnpm dlx playwright@1.54.2 install --no-shell --with-deps chromium firefox webkit",
"prepare": "is-ci || husky",
"release": "changeset publish"
},
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"@shoelace-style/localize": "^3.2.1"
},
"peerDependencies": {
"lit": "^3.2.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@custom-elements-manifest/analyzer": "^0.10.4",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.28.0",
"@figma/rest-api-spec": "^0.32.0",
"@html-eslint/eslint-plugin": "^0.41.0",
"@jridgewell/trace-mapping": "^0.3.29",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.54.2",
"@rollup/plugin-commonjs": "^28.0.2",
"@storybook/addon-actions": "^8.6.14",
"@storybook/addon-controls": "^8.6.14",
"@storybook/addon-docs": "^8.6.14",
"@storybook/addon-toolbars": "^8.6.14",
"@storybook/core-events": "^8.6.14",
"@storybook/manager-api": "^8.6.14",
"@storybook/preview-api": "^8.6.14",
"@storybook/theming": "^8.6.14",
"@storybook/types": "^8.6.14",
"@storybook/web-components": "^8.6.14",
"@storybook/web-components-vite": "^8.6.14",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/convert-source-map": "^2.0.3",
"@types/eslint": "^8.56.12",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/istanbul-reports": "^3.0.4",
"@types/mocha": "^10.0.10",
"@types/serialize-javascript": "^5.0.4",
"@types/sinon": "^17.0.3",
"@typescript-eslint/types": "^8.42.0",
"@typescript-eslint/utils": "^8.42.0",
"@web/dev-server-esbuild": "^1.0.4",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.20.2",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"chokidar-cli": "^3.0.0",
"comment-parser": "^1.4.1",
"convert-source-map": "^2.0.0",
"custom-elements-manifest": "^2.1.0",
"esbuild": "^0.25.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-sort-class-members": "^1.21.0",
"eslint-plugin-unicorn": "^60.0.0",
"globals": "^15.13.0",
"globby": "^14.0.2",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.1.7",
"lint-staged": "^15.2.11",
"lit": "^3.3.0",
"lit-analyzer": "^2.0.3",
"matcher": "^5.0.0",
"minify-literals": "^1.0.10",
"node-html-parser": "^7.0.1",
"npm-run-all2": "^8.0.4",
"per-env": "^1.0.2",
"playwright": "^1.54.2",
"postcss": "^8.5.6",
"postcss-lit": "^1.2.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1",
"serialize-javascript": "^6.0.2",
"sinon": "^19.0.2",
"storybook": "^8.6.14",
"stylelint": "^16.21.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^7.0.0",
"stylelint-prettier": "^5.0.2",
"stylelint-use-logical": "^2.1.2",
"stylelint-use-nesting": "^6.0.0",
"ts-lit-plugin": "^2.0.2",
"ts-morph": "^26.0.0",
"tsx": "^4.19.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.42.0",
"v8-to-istanbul": "^9.3.0",
"vite": "^6.3.2",
"yocto-spinner": "^0.2.0"
},
"engines": {
"node": ">= 20",
"pnpm": ">= 9"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"pnpm": {
"overrides": {
"koa@<3.0.1": ">=3.0.1",
"tmp@<=0.2.3": ">=0.2.4"
}
}
}