-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.26 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
{
"name": "@record-evolution/widget-barchart",
"description": "Webcomponent widget-barchart following open-wc recommendations",
"license": "MIT",
"author": "widget-barchart",
"version": "1.5.3",
"type": "module",
"main": "dist/widget-barchart.js",
"types": "dist/src/widget-barchart.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "cem analyze --litelement",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"build": "rollup -c rollup.config.js",
"watch": "rollup -w -c rollup.config.js",
"link": "npm link && cd ../RESWARM/frontend && npm link @record-evolution/widget-barchart",
"unlink": "npm unlink --global && cd ../RESWARM/frontend && npm unlink @record-evolution/widget-barchart && npm i @record-evolution/widget-barchart",
"types": "cat src/definition-schema.json | json2ts > src/definition-schema.d.ts",
"release": "npm version patch --tag-version-prefix='' && git push && git push --tag"
},
"dependencies": {
"chart.js": "^4.4.4",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-adapter-dayjs-4": "^1.0.4",
"chartjs-adapter-moment": "^1.0.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"lit": "^3.2.0",
"moment": "^2.30.1",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.0",
"@types/tinycolor2": "^1.4.6",
"@web/dev-server": "^0.4.6",
"concurrently": "^9.0.1",
"json-schema-to-typescript": "^15.0.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RecordEvolution/widget-barchart.git"
},
"keywords": [
"widget",
"barchart"
],
"bugs": {
"url": "https://github.com/RecordEvolution/widget-barchart/issues"
},
"homepage": "https://github.com/RecordEvolution/widget-barchart#readme"
}