-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
188 lines (188 loc) · 7.46 KB
/
Copy pathpackage.json
File metadata and controls
188 lines (188 loc) · 7.46 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
{
"name": "@clevercloud/components",
"version": "26.2.0",
"description": "Collection of Web Components by Clever Cloud",
"license": "Apache-2.0",
"keywords": [
"components",
"clever-cloud"
],
"repository": {
"type": "git",
"url": "https://github.com/CleverCloud/clever-components.git"
},
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"cdn-preview:build": "rollup -c rollup/rollup-cdn-preview.config.js",
"cdn-preview:delete": "node tasks/cdn-cli.js delete preview",
"cdn-preview:get": "node tasks/cdn-cli.js get preview",
"cdn-preview:list": "node tasks/cdn-cli.js list preview",
"cdn-preview:publish": "node tasks/cdn-cli.js publish preview",
"cdn-preview:ui": "node tasks/cdn-cli.js ui preview",
"cdn-release:build": "rollup -c rollup/rollup-cdn.config.js",
"cdn-release:publish": "node tasks/cdn-cli.js publish release",
"cdn-release:ui": "node tasks/cdn-cli.js ui release",
"components:build": "rollup -c rollup/rollup-npm.config.js",
"components:check-i18n": "node tasks/check-i18n.js",
"components:check-lit": "lit-analyzer src",
"components:docs": "cem analyze --outdir dist",
"components:events-map-generate": "node tasks/generate-events-map.js",
"components:events-map-check": "node tasks/generate-events-map.js check",
"components:generate-icons-assets": "node tasks/generate-icons-assets.js",
"components:graph-usage": "node tasks/component-usage-cli.js",
"format": "prettier . --write",
"format:check": "prettier . --check",
"install-local:config": "(cd ../tooling-javascript/eslint/config && DEV=true pnpm pack) && mv ../tooling-javascript/eslint/config/clevercloud-eslint-config-*tgz . && pnpm add -f ./clevercloud-eslint-config-*tgz",
"install-local:client": "(cd ../clever-client.js && DEV=true pnpm pack) && mv ../clever-client.js/clevercloud-client-*.tgz . && pnpm add -f ./clevercloud-client-*.tgz",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:inspect-config": "eslint --inspect-config",
"prepack:prod": "pnpm format:check && pnpm lint && pnpm stylelint && pnpm components:check-lit && pnpm typecheck && pnpm components:check-i18n && pnpm components:events-map-check && pnpm test && pnpm components:build && pnpm components:docs",
"prepack:dev": "pnpm components:build",
"prepack": "[ \"$DEV\" == \"true\" ] && pnpm prepack:dev || pnpm prepack:prod",
"prestorybook:build": "pnpm components:docs",
"preview:delete": "node tasks/preview.js delete",
"preview:get": "node tasks/preview.js get",
"preview:list": "node tasks/preview.js list",
"preview:publish": "node tasks/preview.js publish",
"storybook:build": "storybook build -o storybook-static${STORYBOOK_PATH}",
"storybook:dev": "storybook dev -p 6006 --no-open",
"stylelint": "stylelint src/components/*/*.js",
"stylelint:fix": "stylelint src/components/*/*.js --fix",
"test": "wtr",
"test:group": "wtr --group",
"test:mocha": "mocha test-mocha/**/*.test.*js",
"test:mocha:watch": "mocha --watch test-mocha/**/*.*js",
"test:watch": "wtr --watch",
"test:watch:group": "wtr --watch --group",
"test:visual": "wtr --config web-test-runner.visual-tests.config.js",
"test:visual:update-expectation": "wtr --config web-test-runner.visual-tests.config.js --update-expectation",
"typecheck": "tsc -p tsconfig.ci.json",
"typecheck:stats": "node tasks/typechecking-stats.js"
},
"dependencies": {
"@clevercloud/client": "^12.6.0",
"@lit-labs/motion": "^1.0.7",
"@lit-labs/virtualizer": "^2.0.14",
"@shoelace-style/shoelace": "^2.18.0",
"@tanstack/lit-virtual": "^3.13.29",
"@tanstack/virtual-core": "^3.17.0",
"ansi-regex": "^6.0.1",
"chart.js": "^3.5.0",
"chartjs-plugin-datalabels": "^2.0.0",
"dedent": "^1.6.0",
"immer": "^9.0.15",
"leaflet": "^1.7.1",
"lit": "^3.2.1",
"statuses": "^2.0.1"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.29.0",
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.28.0",
"@babel/plugin-syntax-import-attributes": "^7.27.1",
"@babel/preset-react": "^7.13.13",
"@bundled-es-modules/chai": "^4.2.2",
"@clevercloud/eslint-config": "^1.0.1",
"@clevercloud/reglage": "^0.0.6",
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@custom-elements-manifest/analyzer": "^0.9.4",
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.8.0",
"@esm-bundle/chai-as-promised": "^7.1.1",
"@html-eslint/eslint-plugin": "^0.41.0",
"@octokit/rest": "^22.0.0",
"@open-wc/dev-server-hmr": "^0.1.3",
"@open-wc/testing": "^4.0.0",
"@open-wc/testing-helpers": "^3.0.1",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^18.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-links": "^10.1.10",
"@storybook/web-components-vite": "^10.1.10",
"@types/estree": "^1.0.8",
"@types/geojson": "^7946.0.16",
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.9",
"@types/json5": "^0.0.29",
"@types/leaflet": "^1.9.12",
"@types/leaflet.heat": "^0.2.4",
"@types/mocha": "^10.0.10",
"@types/react": "^19.2.14",
"@types/statuses": "^2.0.5",
"@web/dev-server-rollup": "^0.3.19",
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
"@web/test-runner": "^0.19.0",
"@web/test-runner-chrome": "^0.17.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-mocha": "^0.9.0",
"@web/test-runner-playwright": "^0.11.1",
"@web/test-runner-visual-regression": "^0.10.0",
"babel-loader": "^8.2.2",
"babel-plugin-inline-svg": "^1.2.0",
"browserslist-config-baseline": "^0.5.0",
"chai": "^4.3.6",
"chalk": "^2.4.2",
"clean-css": "^5.3.2",
"dependency-graph": "^0.11.0",
"es-module-lexer": "^1.3.0",
"esbuild": "^0.12.16",
"eslint": "^9.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-n": "^17.13.0",
"eslint-plugin-wc": "^2.2.0",
"github-markdown-css": "^4.0.0",
"glob": "^7.1.7",
"globals": "^15.12.0",
"hanbi": "^1.0.1",
"highlight.js": "^10.7.2",
"i18n-extract": "0.6.7",
"js-yaml": "^4.1.0",
"json5": "^1.0.1",
"lit-analyzer": "2.0.0-pre.3",
"mime-types": "^2.1.30",
"mocha": "^10.0.0",
"postcss-styled-syntax": "^0.7.0",
"prettier": "^3.6.0",
"prettier-plugin-organize-imports": "^4.0.0",
"react": "^19.2.6",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-highlight.js": "^6.0.0",
"remark-html": "^13.0.1",
"remark-parse": "^9.0.0",
"remixicon": "4.9.1",
"rollup": "^2.47.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.0",
"semver": "^7.7.2",
"storybook": "^10.1.10",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-no-unsupported-browser-features": "^8.0.4",
"stylelint-order": "^6.0.4",
"superagent": "^6.1.0",
"svgo": "^1.3.2",
"text-table": "^0.2.0",
"tinyglobby": "^0.2.10",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.8.3",
"unified": "^9.2.1",
"vite": "^7.2.2",
"zod": "^4.4.3"
},
"customElements": "dist/custom-elements.json"
}