-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 3.24 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
{
"name": "@senx/discovery-widgets",
"version": "1.2.8",
"description": "Discovery Widgets Elements",
"keywords": [
"web",
"dataviz",
"web components",
"time series",
"warp10",
"Warp 10",
"WarpScript",
"Geo Times Series",
"Times Series"
],
"author": "SenX <contact@senx.io>",
"license": "Apache-2.0",
"homepage": "https://warp10.io/",
"private": false,
"main": "dist/index.cjs.js",
"module": "./dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/discovery/discovery.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"dist": "stencil build",
"cl": "node changelog.js > CHANGELOG.md",
"build": "npx update-browserslist-db@latest && stencil build --docs --prod",
"build:dev": "stencil build --docs --dev --watch --serve --no-open",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"gen": "stencil generate",
"prepublishOnly": "yarn clean && yarn build",
"clean": "rm -fr ./www && rm -fr ./dist",
"lint": "eslint -c .eslintrc.js --format html -o ./out/lint/eslint.html src/**/*.{js,ts,tsx}"
},
"dependencies": {
"@stencil/core": "^4.22.3",
"@tarekraafat/autocomplete.js": "^10.2.9",
"css-color-names": "^1.0.1",
"dayjs": "^1.11.13",
"dom-to-image": "^2.6.0",
"echarts": "5.5.1",
"element-resize-event": "^3.0.6",
"fitty": "^2.4.2",
"flatpickr": "^4.6.13",
"html2canvas": "^1.4.1",
"is-css-color-name": "^0.1.3",
"jspdf": "^2.5.2",
"leaflet": "^1.9.4",
"leaflet-ant-path": "^1.3.0",
"leaflet-edgebuffer": "^1.0.6",
"leaflet.heat": "^0.2.0",
"leaflet.markercluster": "^1.5.3",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"nouislider": "^15.8.1",
"showdown": "^2.1.0",
"streamsaver": "^2.0.6",
"uuid": "^11.0.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@stencil/sass": "^3.0.12",
"@stylistic/eslint-plugin-ts": "^2.10.1",
"@types/dom-to-image": "^2.6.7",
"@types/element-resize-event": "^3.0.2",
"@types/lodash": "^4.17.12",
"@types/node": "^22.8.2",
"@types/showdown": "^2.0.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^8.14.0",
"babel-loader": "9.2.1",
"browserslist": "^4.24.2",
"case": "^1.6.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"npm-run-all": "^4.1.5",
"rollup-plugin-node-polyfills": "^0.2.1",
"semver-sort": "^1.0.0",
"tslib": "^2.8.0",
"tslint": "^6.1.3",
"tslint-stencil": "^1.0.1",
"typescript": "^5.6.3"
}
}