candleview 1.1.4 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +750 -512
- package/dist/index.d.ts +101 -6
- package/dist/index.js +389 -20
- package/dist/index.mjs +19658 -14928
- package/package.json +83 -82
package/package.json
CHANGED
|
@@ -1,82 +1,83 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "candleview",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"keywords": [
|
|
6
|
-
"Finance",
|
|
7
|
-
"Financial Analysis",
|
|
8
|
-
"Financial Charts",
|
|
9
|
-
"Finance Trading",
|
|
10
|
-
"Trading",
|
|
11
|
-
"Chart",
|
|
12
|
-
"Charts",
|
|
13
|
-
"K-Line",
|
|
14
|
-
"KLine"
|
|
15
|
-
],
|
|
16
|
-
"author": "happyboy",
|
|
17
|
-
"license": "AGPL-3.0-only",
|
|
18
|
-
"repository": "https://github.com/0xhappyboy/candleview",
|
|
19
|
-
"bugs": {
|
|
20
|
-
"url": "https://github.com/0xhappyboy/candleview/issues"
|
|
21
|
-
},
|
|
22
|
-
"homepage": "https://candleview-website.vercel.app/",
|
|
23
|
-
"main": "dist/index.js",
|
|
24
|
-
"module": "dist/index.mjs",
|
|
25
|
-
"types": "dist/index.d.ts",
|
|
26
|
-
"source": "src/index.tsx",
|
|
27
|
-
"exports": {
|
|
28
|
-
".": {
|
|
29
|
-
"import": "./dist/index.mjs",
|
|
30
|
-
"require": "./dist/index.js",
|
|
31
|
-
"types": "./dist/index.d.ts"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"engines": {
|
|
35
|
-
"node": ">=16"
|
|
36
|
-
},
|
|
37
|
-
"scripts": {
|
|
38
|
-
"clean": "rm -rf dist node_modules/.cache .tsbuildinfo",
|
|
39
|
-
"build": "vite build",
|
|
40
|
-
"build:fast": "vite build --mode development",
|
|
41
|
-
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
42
|
-
"start": "vite build --watch",
|
|
43
|
-
"dev": "vite",
|
|
44
|
-
"prepare": "npm run build",
|
|
45
|
-
"test": "run-s test:unit test:lint",
|
|
46
|
-
"test:build": "vite build",
|
|
47
|
-
"test:lint": "eslint .",
|
|
48
|
-
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
49
|
-
"test:watch": "react-scripts test --env=jsdom",
|
|
50
|
-
"predeploy": "cd example && yarn install && yarn run build",
|
|
51
|
-
"deploy": "gh-pages -d example/build"
|
|
52
|
-
},
|
|
53
|
-
"peerDependencies": {
|
|
54
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
55
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
56
|
-
},
|
|
57
|
-
"dependencies": {
|
|
58
|
-
"lightweight-charts": "^5.0.9",
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"@types/react
|
|
64
|
-
"@
|
|
65
|
-
"@typescript-eslint/
|
|
66
|
-
"@
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"eslint
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"react
|
|
74
|
-
"react-
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"vite
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "candleview",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "An AI-powered data visualization and charting engine designed for the financial industry.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Finance",
|
|
7
|
+
"Financial Analysis",
|
|
8
|
+
"Financial Charts",
|
|
9
|
+
"Finance Trading",
|
|
10
|
+
"Trading",
|
|
11
|
+
"Chart",
|
|
12
|
+
"Charts",
|
|
13
|
+
"K-Line",
|
|
14
|
+
"KLine"
|
|
15
|
+
],
|
|
16
|
+
"author": "happyboy",
|
|
17
|
+
"license": "AGPL-3.0-only",
|
|
18
|
+
"repository": "https://github.com/0xhappyboy/candleview",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/0xhappyboy/candleview/issues"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://candleview-website.vercel.app/",
|
|
23
|
+
"main": "dist/index.js",
|
|
24
|
+
"module": "dist/index.mjs",
|
|
25
|
+
"types": "dist/index.d.ts",
|
|
26
|
+
"source": "src/index.tsx",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": "./dist/index.mjs",
|
|
30
|
+
"require": "./dist/index.js",
|
|
31
|
+
"types": "./dist/index.d.ts"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=16"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"clean": "rm -rf dist node_modules/.cache .tsbuildinfo",
|
|
39
|
+
"build": "vite build",
|
|
40
|
+
"build:fast": "vite build --mode development",
|
|
41
|
+
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
42
|
+
"start": "vite build --watch",
|
|
43
|
+
"dev": "vite",
|
|
44
|
+
"prepare": "npm run build",
|
|
45
|
+
"test": "run-s test:unit test:lint",
|
|
46
|
+
"test:build": "vite build",
|
|
47
|
+
"test:lint": "eslint .",
|
|
48
|
+
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
49
|
+
"test:watch": "react-scripts test --env=jsdom",
|
|
50
|
+
"predeploy": "cd example && yarn install && yarn run build",
|
|
51
|
+
"deploy": "gh-pages -d example/build"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
55
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"lightweight-charts": "^5.0.9",
|
|
59
|
+
"ohlcv-ai": "^1.1.1",
|
|
60
|
+
"resize-observer-polyfill": "^1.5.1"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/react": "^19.2.0",
|
|
64
|
+
"@types/react-dom": "^19.2.0",
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
66
|
+
"@typescript-eslint/parser": "^8.26.1",
|
|
67
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
68
|
+
"cross-env": "^7.0.3",
|
|
69
|
+
"eslint": "^9.17.0",
|
|
70
|
+
"eslint-plugin-react": "^7.37.4",
|
|
71
|
+
"gh-pages": "^6.3.0",
|
|
72
|
+
"npm-run-all": "^4.1.5",
|
|
73
|
+
"react": "^19.2.0",
|
|
74
|
+
"react-dom": "^19.2.0",
|
|
75
|
+
"react-scripts": "^5.0.1",
|
|
76
|
+
"typescript": "^5.7.3",
|
|
77
|
+
"vite": "^7.2.6",
|
|
78
|
+
"vite-plugin-dts": "^4.5.4"
|
|
79
|
+
},
|
|
80
|
+
"files": [
|
|
81
|
+
"dist"
|
|
82
|
+
]
|
|
83
|
+
}
|