-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 933 Bytes
/
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
{
"name": "lit-line-demo",
"version": "0.3.1",
"license": "MIT",
"contributors": [
"Adrien Pinet"
],
"description": "SVG line chart webcomponent based on lit-html. fast, small, reactive, responsive.",
"keywords": [
"svg",
"chart",
"webcomponent",
"data",
"graph",
"lit-html",
"es6"
],
"repository": {
"type": "git",
"url": "https://github.com/adrienpinet/lit-line.git"
},
"bugs": {
"url": "https://github.com/adrienpinet/lit-line/issues"
},
"scripts": {
"clean": "rm -fr dist",
"dev": "esbuild --bundle src/index-app.ts --outfile=index-app.js --external:node_modules --servedir=.",
"build": "esbuild --bundle src/index-app.ts --outfile=index-app.js --bundle --minify",
"preview": "npm run build -- --servedir=."
},
"dependencies": {
"lit-html": "^3.1.2",
"lit-line": "^0.3.1"
},
"devDependencies": {
"esbuild": "^0.20.1"
}
}