-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.87 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.87 KB
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
105
106
107
108
109
110
111
112
{
"name": "chartlets",
"version": "0.1.8-dev.0",
"description": "An experimental library for integrating interactive charts into existing JavaScript applications.",
"type": "module",
"files": [
"dist",
"../../README.md",
"../../LICENSE"
],
"keywords": [
"typescript",
"library",
"framework",
"dashboard",
"plotting",
"charting"
],
"homepage": "https://bcdev.github.io/chartlets",
"repository": {
"type": "git",
"url": "https://github.com/bcdev/chartlets.git"
},
"bugs": {
"url": "https://github.com/bcdev/chartlets/issues"
},
"author": "Brockmann Consult GmbH",
"license": "MIT",
"types": "./dist/index.d.ts",
"module": "./dist/chartlets.js",
"main": "./dist/chartlets.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/chartlets.js",
"require": "./dist/chartlets.cjs"
},
"./plugins/mui": {
"types": "./dist/plugins/mui/index.d.ts",
"module": "./dist/mui-plugin.js",
"require": "./dist/mui-plugin.cjs"
},
"./plugins/vega": {
"types": "./dist/plugins/vega/index.d.ts",
"module": "./dist/vega-plugin.js",
"require": "./dist/vega-plugin.cjs"
}
},
"scripts": {
"dev": "vite",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"compile": "tsc"
},
"dependencies": {
"micro-memoize": "^4.1.3",
"microdiff": "^1.4",
"zustand": "^5.0"
},
"peerDependencies": {
"@mui/material": "^6.2.1",
"@mui/x-data-grid": ">=7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-vega": "^8.0.0",
"vega": "^6.2.0",
"vega-embed": "^7.1.0",
"vega-lite": "^6.4.2",
"vega-themes": ">=2"
},
"peerDependenciesMeta": {
"@mui/x-data-grid": {
"optional": true
},
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.38.0",
"@mui/x-data-grid": "^7.23.5",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^20.11.17",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-istanbul": "^3.2.4",
"canvas": "^3.2.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"glob": "^13.0.1",
"globals": "^16.0.0",
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "^7.1.11",
"vite-plugin-dts": "^4.2.4",
"vitest": "^3.2.4"
}
}