forked from WebLogin/trendchart-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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": "1.1.0",
"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"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@web/dev-server": "0.1.34",
"concurrently": "5.3.0",
"rollup": "^2.79.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"tslib": "2.3.1",
"typescript": "4.5.2"
}
}