-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.21 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.21 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
{
"name": "kline-charts-react",
"version": "0.0.2",
"description": "Professional stock K-line chart React component with built-in data source, powered by ECharts and stock-sdk",
"author": "chengzuopeng",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/kline-charts-react.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": [
"*.css"
],
"scripts": {
"dev": "yarn --cwd playground dev",
"build": "tsc -b && vite build",
"build:lib": "tsc -b && vite build",
"build:playground": "yarn --cwd playground build",
"lint": "eslint .",
"preview": "yarn --cwd playground preview",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"echarts": ">=5.4.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
},
"echarts": {
"optional": false
}
},
"dependencies": {
"stock-sdk": "^1.6.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"echarts": "^5.5.0",
"eslint": "^9.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "~5.6.2",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.4.0"
},
"keywords": [
"kline",
"k-line",
"stock",
"chart",
"echarts",
"react",
"candlestick",
"trading",
"finance",
"stock-chart",
"technical-analysis",
"macd",
"bollinger",
"kdj",
"rsi",
"a-share",
"hk-stock",
"us-stock"
],
"repository": {
"type": "git",
"url": "https://github.com/chengzuopeng/kline-charts-react.git"
},
"bugs": {
"url": "https://github.com/chengzuopeng/kline-charts-react/issues"
},
"homepage": "https://github.com/chengzuopeng/kline-charts-react#readme",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@1.22.22"
}