-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
171 lines (171 loc) · 6.33 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
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
{
"name": "@clevercloud/components",
"version": "18.0.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:check-type-imports": "node tasks/check-type-imports.js",
"components:docs": "cem analyze --outdir dist",
"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",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:inspect-config": "eslint --inspect-config",
"prepack:prod": "npm run format:check && npm run lint && npm run stylelint && npm run components:check-lit && npm run typecheck && npm run components:check-i18n && npm run components:check-type-imports && npm run test && npm run components:build && npm run components:docs",
"prepack:dev": "npm run components:build",
"prepack": "[ \"$DEV\" == \"true\" ] && npm run prepack:dev || npm run prepack:prod",
"prestorybook:build": "npm run 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:mocha": "mocha test-mocha/**/*.test.*js",
"test:mocha:watch": "mocha --watch test-mocha/**/*.*js",
"test:watch": "wtr --watch",
"typecheck": "tsc -p tsconfig.ci.json",
"typecheck:stats": "node tasks/typechecking-stats.js"
},
"dependencies": {
"@clevercloud/client": "^8.2.0",
"@lit-labs/motion": "^1.0.7",
"@lit-labs/virtualizer": "^2.0.14",
"@shoelace-style/shoelace": "^2.18.0",
"ansi-regex": "^6.0.1",
"chart.js": "^3.5.0",
"chartjs-plugin-datalabels": "^2.0.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/preset-react": "^7.13.13",
"@babel/traverse": "^7.26.5",
"@babel/types": "^7.26.5",
"@bundled-es-modules/chai": "^4.2.2",
"@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",
"@open-wc/dev-server-hmr": "^0.1.3",
"@open-wc/testing": "^4.0.0",
"@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-essentials": "^8.5.1",
"@storybook/addon-links": "^8.5.1",
"@storybook/blocks": "^8.5.1",
"@storybook/core-events": "^8.5.1",
"@storybook/manager-api": "^8.5.1",
"@storybook/theming": "^8.5.1",
"@storybook/web-components": "^8.5.1",
"@storybook/web-components-vite": "^8.5.1",
"@types/babel__traverse": "^7.20.6",
"@types/js-yaml": "^4.0.9",
"@types/leaflet": "^1.9.12",
"@types/leaflet.heat": "^0.2.4",
"@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",
"babel-loader": "^8.2.2",
"babel-plugin-inline-svg": "^1.2.0",
"babel-plugin-template-html-minifier": "^4.1.0",
"chai": "^4.3.6",
"chalk": "^2.4.2",
"clean-css": "^4.2.1",
"dedent": "^1.5.3",
"dependency-graph": "^0.11.0",
"es-module-lexer": "^1.3.0",
"esbuild": "^0.12.16",
"eslint": "^9.15.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.2.5",
"prettier-plugin-organize-imports": "^4.0.0",
"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.1.0",
"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",
"storybook": "^8.5.1",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"superagent": "^6.1.0",
"svgo": "^1.3.2",
"text-table": "^0.2.0",
"ts-lit-plugin": "^2.0.2",
"typescript": "~5.4.2",
"unified": "^9.2.1",
"vite": "^6.0.11"
},
"customElements": "dist/custom-elements.json",
"volta": {
"node": "20.12.2",
"npm": "8.19.3"
}
}