-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.07 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
{
"name": "react-candlestick-chart",
"version": "1.0.15",
"description": "High performance, lightweight and interactive candlestick chart using the canvas tag, D3 and React.",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc"
},
"author": "Dariush Hassani",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Dariush-Hassani/react-candlestick-chart"
},
"devDependencies": {
"typescript": "^5.4.5",
"react-dom": "^18.1.0",
"react": "^18.2.0",
"@types/d3": "^7.4.3",
"@types/node": "^16.18.86",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"d3": "^7.8.5",
"rimraf": "^5.0.5"
},
"keywords": [
"chart",
"charts",
"candlestick",
"canvas",
"graph",
"react",
"data",
"visualization",
"datavisualization",
"d3",
"html5",
"responsive"
]
}