@pipsend/charts 0.0.8

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,142 @@
1
+ {
2
+ "private": false,
3
+ "version": "0.0.8",
4
+ "name": "@pipsend/charts",
5
+ "author": "Pipsend",
6
+ "license": "SEE LICENSE IN LICENSE",
7
+ "description": "Advanced financial charting library with built-in technical indicators - Simple, powerful, and framework-agnostic",
8
+ "homepage": "https://github.com/ArcaTechCo/PipsendCharts",
9
+ "bugs": {
10
+ "url": "https://github.com/ArcaTechCo/PipsendCharts/issues"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/ArcaTechCo/PipsendCharts.git"
15
+ },
16
+ "type": "module",
17
+ "module": "dist/pipsend-charts.production.mjs",
18
+ "main": "dist/pipsend-charts.production.mjs",
19
+ "typings": "dist/typings.d.ts",
20
+ "exports": {
21
+ "./package.json": "./package.json",
22
+ ".": {
23
+ "development": {
24
+ "types": "./dist/typings.d.ts",
25
+ "import": "./dist/pipsend-charts.development.mjs"
26
+ },
27
+ "production": {
28
+ "types": "./dist/typings.d.ts",
29
+ "import": "./dist/pipsend-charts.production.mjs"
30
+ },
31
+ "default": {
32
+ "types": "./dist/typings.d.ts",
33
+ "import": "./dist/pipsend-charts.production.mjs"
34
+ }
35
+ }
36
+ },
37
+ "files": [
38
+ "dist/**"
39
+ ],
40
+ "keywords": [
41
+ "financial-charting-library",
42
+ "charting-library",
43
+ "html5-charts",
44
+ "canvas",
45
+ "typescript",
46
+ "charting",
47
+ "charts",
48
+ "pipsend",
49
+ "candlestick",
50
+ "technical-indicators",
51
+ "trading-charts",
52
+ "rsi",
53
+ "macd",
54
+ "bollinger-bands",
55
+ "financial-analysis"
56
+ ],
57
+ "engines": {
58
+ "node": ">=22.3"
59
+ },
60
+ "dependencies": {
61
+ "fancy-canvas": "2.1.0"
62
+ },
63
+ "devDependencies": {
64
+ "@juggle/resize-observer": "3.4.0",
65
+ "@rollup/plugin-node-resolve": "16.0.1",
66
+ "@rollup/plugin-replace": "6.0.2",
67
+ "@rollup/plugin-terser": "0.4.4",
68
+ "@size-limit/file": "11.2.0",
69
+ "@size-limit/webpack": "11.2.0",
70
+ "@types/chai": "5.2.1",
71
+ "@types/express": "5.0.1",
72
+ "@types/glob": "8.1.0",
73
+ "@types/node": "22",
74
+ "@types/pixelmatch": "5.2.6",
75
+ "@types/pngjs": "6.0.5",
76
+ "@typescript-eslint/eslint-plugin": "7.18.0",
77
+ "@typescript-eslint/eslint-plugin-tslint": "7.0.2",
78
+ "@typescript-eslint/parser": "7.18.0",
79
+ "ajv": "7.2.4",
80
+ "bytes": "3.1.2",
81
+ "chai": "5.2.0",
82
+ "chai-exclude": "3.0.1",
83
+ "cross-env": "7.0.3",
84
+ "dts-bundle-generator": "9.5.1",
85
+ "eslint": "8",
86
+ "eslint-formatter-unix": "8.40.0",
87
+ "eslint-plugin-deprecation": "3.0.0",
88
+ "eslint-plugin-import": "2.31.0",
89
+ "eslint-plugin-unicorn": "56.0.1",
90
+ "esno": "4.8.0",
91
+ "glob": "11.0.1",
92
+ "markdown-it": "14.1.0",
93
+ "markdown-it-anchor": "9.2.0",
94
+ "markdownlint-cli": "0.44.0",
95
+ "npm-run-all": "4.1.5",
96
+ "rimraf": "6.0.1",
97
+ "rollup": "4.40.0",
98
+ "size-limit": "11.2.0",
99
+ "ts-node": "10.9.2",
100
+ "ts-patch": "3.3.0",
101
+ "ts-transformer-properties-rename": "0.17.0",
102
+ "ts-transformer-strip-const-enums": "2.0.0",
103
+ "tslib": "2.8.1",
104
+ "tslint": "6.1.3",
105
+ "tslint-eslint-rules": "5.4.0",
106
+ "tslint-microsoft-contrib": "6.2.0",
107
+ "tsx": "4.19.3",
108
+ "typescript": "5.5.4",
109
+ "yargs": "17.7.2"
110
+ },
111
+ "scripts": {
112
+ "postinstall": "npm run install-hooks",
113
+ "install-hooks": "node scripts/githooks/install.js",
114
+ "clean": "rimraf lib/ dist/",
115
+ "bundle-dts": "dts-bundle-generator --config dts-config.json",
116
+ "tsc": "tspc -p tsconfig.prod.json",
117
+ "tsc-watch": "npm run tsc -- --watch --preserveWatchOutput",
118
+ "tsc-verify": "node website/scripts/generate-versions-dts.js && tsc -b tsconfig.composite.json",
119
+ "lint": "npm-run-all -p lint:**",
120
+ "lint:eslint": "eslint --format=unix ./",
121
+ "lint:md": "markdownlint -i \"**/node_modules/**\" -i \"**/website/docs/api/**\" -i \"**/website/versioned_docs/**/api/**\" -i \"**/*.mdx\" \"**/*.md\"",
122
+ "check-dts-docs": "npm-run-all -p check-dts-docs-duplicates check-dts-docs-eslint",
123
+ "check-dts-docs-duplicates": "node ./scripts/check-typings-for-duplicates.js ./dist/typings.d.ts",
124
+ "check-dts-docs-eslint": "eslint --format=unix ./dist/typings.d.ts --no-ignore",
125
+ "check-markdown-links": "node scripts/check-markdown-links.js",
126
+ "rollup": "rollup -c rollup.config.js",
127
+ "rollup-watch": "npm run rollup -- --watch",
128
+ "build": "npm-run-all tsc rollup bundle-dts",
129
+ "build:watch": "npm-run-all tsc -p tsc-watch rollup-watch",
130
+ "build:prod": "cross-env NODE_ENV=production npm run build",
131
+ "build:release": "cross-env BUILD_TAG=release npm run build:prod",
132
+ "prepare-release": "npm-run-all clean build:release && npm run prepare-package-json-for-release",
133
+ "prepare-package-json-for-release": "node ./scripts/clean-package-json.js",
134
+ "size-limit": "size-limit",
135
+ "verify": "npm-run-all clean -p build:prod check-markdown-links -p lint check-dts-docs tsc-verify test size-limit -p type-tests",
136
+ "test": "esno --import ./tests/unittests/setup.units.mjs --test './tests/unittests/**/*.spec.ts'",
137
+ "type-tests": "tsc -b ./src/tsconfig.composite.json && tsc -p ./tests/type-checks/tsconfig.composite.json --noEmit",
138
+ "e2e:coverage": "esno ./tests/e2e/coverage/runner.ts ./dist/pipsend-charts.standalone.development.js",
139
+ "e2e:interactions": "esno ./tests/e2e/interactions/runner.ts ./dist/pipsend-charts.standalone.development.js",
140
+ "e2e:memleaks": "esno ./tests/e2e/memleaks/runner.ts ./dist/pipsend-charts.standalone.development.js"
141
+ }
142
+ }