-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "@weblogin/trendchart-elements",
"description": "Web components to generate simple responsive charts representing trends",
"license": "MIT",
"author": "WebLogin",
"version": "2.0.1",
"keywords": [
"web-component",
"lit-element",
"chart",
"trend"
],
"homepage": "https://github.com/WebLogin/trendchart-elements",
"repository": {
"url": "https://github.com/WebLogin/trendchart-elements.git",
"type": "git"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"demo": "concurrently --kill-others \"rollup --config --watch\" \"wds\""
},
"dependencies": {
"lit": "^2.0.2 || ^3.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@web/dev-server": "^0.4.6",
"concurrently": "^8.2.2",
"rollup": "^2.79.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
}
}