@qfo/qfchart 0.5.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/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@qfo/qfchart",
3
+ "version": "0.5.0",
4
+ "description": "Professional financial charting library built on Apache ECharts with candlestick charts, technical indicators, and interactive drawing tools",
5
+ "keywords": [
6
+ "chart",
7
+ "charting",
8
+ "candlestick",
9
+ "financial",
10
+ "trading",
11
+ "technical-analysis",
12
+ "indicators",
13
+ "echarts",
14
+ "ohlcv",
15
+ "stock-chart",
16
+ "crypto",
17
+ "forex",
18
+ "drawing-tools",
19
+ "fibonacci",
20
+ "typescript"
21
+ ],
22
+ "homepage": "https://github.com/QuantForgeOrg/QFChart#readme",
23
+ "bugs": {
24
+ "url": "https://github.com/QuantForgeOrg/QFChart/issues"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/QuantForgeOrg/QFChart.git"
29
+ },
30
+ "license": "Apache-2.0",
31
+ "author": "Alaa-eddine KADDOURI",
32
+ "type": "module",
33
+ "main": "dist/qfchart.min.browser.js",
34
+ "types": "dist/index.d.ts",
35
+ "files": [
36
+ "dist",
37
+ "src",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "scripts": {
45
+ "clean": "node -e \"const fs = require('fs'); if (fs.existsSync('dist')) fs.rmSync('dist', { recursive: true, force: true })\"",
46
+ "build": "npm run clean && rollup -c",
47
+ "build:dev": "npm run clean && cross-env BUILD=dev rollup -c",
48
+ "build:prod": "npm run clean && cross-env BUILD=prod rollup -c",
49
+ "watch": "rollup -c -w",
50
+ "prepublishOnly": "npm run build:prod",
51
+ "test": "echo \"Error: no test specified\" && exit 1"
52
+ },
53
+ "devDependencies": {
54
+ "@rollup/plugin-commonjs": "^25.0.0",
55
+ "@rollup/plugin-json": "^6.0.0",
56
+ "@rollup/plugin-node-resolve": "^15.0.0",
57
+ "@rollup/plugin-replace": "^6.0.3",
58
+ "cross-env": "^7.0.3",
59
+ "esbuild": "^0.19.0",
60
+ "rollup": "^3.28.0",
61
+ "rollup-plugin-dts": "^6.3.0",
62
+ "rollup-plugin-esbuild": "^5.0.0",
63
+ "rollup-plugin-sourcemaps": "^0.6.3",
64
+ "rollup-plugin-typescript-paths": "^1.4.0",
65
+ "tslib": "^2.6.0",
66
+ "typescript": "^5.1.0"
67
+ },
68
+ "dependencies": {
69
+ "echarts": "^6.0.0"
70
+ }
71
+ }