generated from thedanchez/template-solidjs-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.15 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.15 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@dschz/solid-plotly",
"version": "0.1.3",
"description": "SolidJS wrapper for Plotly.js – reactive and performant charts powered by Plotly, built for Solid.",
"type": "module",
"author": "Daniel Sanchez <dsanc89@pm.me>",
"license": "MIT",
"homepage": "https://github.com/dsnchz/solid-plotly#readme",
"repository": {
"type": "git",
"url": "https://github.com/dsnchz/solid-plotly.git"
},
"bugs": {
"url": "https://github.com/dsnchz/solid-plotly/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"analytics",
"bar",
"candlestick",
"chart-component",
"charting",
"charts",
"component-library",
"data-component",
"data-visualization",
"dataviz",
"dashboard",
"graph",
"graphs",
"heatmap",
"interactive-charts",
"line",
"plot",
"plotly",
"plotly-js",
"plotly-solid",
"plotly.js",
"plotlyjs",
"reactive-charts",
"responsive-charts",
"scatter",
"solid",
"solid-js",
"solidjs",
"solidjs-component",
"solidjs-plotly",
"time-series",
"timeseries",
"typescript",
"ui-component",
"visualization"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "vite",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pkg:changeset": "changeset",
"pkg:version": "changeset version",
"pkg:publish": "bun run build && changeset publish",
"serve": "vite preview",
"start": "vite",
"start:server": "bun run server/index.ts",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@changesets/cli": "^2.29.3",
"@solidjs/router": "^0.15.3",
"@solidjs/testing-library": "^0.8.10",
"@tailwindcss/vite": "^4.1.5",
"@testing-library/jest-dom": "^6.6.3",
"@types/bun": "^1.2.12",
"@types/plotly.js": "^3.0.0",
"@types/plotly.js-dist-min": "^2.3.4",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitest/coverage-istanbul": "^3.1.3",
"eslint": "^9.26.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-solid": "^0.14.5",
"globals": "^16.1.0",
"jiti": "^2.4.2",
"jsdom": "^26.1.0",
"plotly.js": "^3.0.1",
"plotly.js-dist-min": "^3.0.1",
"prettier": "^3.5.3",
"process": "^0.11.10",
"solid-js": "^1.9.6",
"tailwindcss": "^4.1.5",
"tsup": "^8.4.0",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"util": "^0.12.5",
"vite": "^6.3.5",
"vite-plugin-solid": "^2.11.6",
"vitest": "^3.1.3"
},
"peerDependencies": {
"solid-js": ">=1.6.0"
},
"dependencies": {
"@dschz/try-catch": "^1.1.2"
}
}