forked from evotrader/TradingChest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.92 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
{
"name": "trading-chest",
"version": "0.5.3",
"description": "Professional trading chart for EvoTrader, based on KLineChart.",
"type": "module",
"main": "./dist/trading-chest.umd.js",
"module": "./dist/trading-chest.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/evotrader/TradingChest"
},
"keywords": [
"trading",
"chart",
"klinecharts",
"candlestick",
"finance",
"quantitative",
"canvas"
],
"author": "EvoTrader",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build-core": "tsc && vite build",
"build-dts": "dts-bundle-generator --no-banner true --umd-module-name klinechartspro --external-imports react klinecharts -o dist/index.d.ts src/index.ts",
"build": "npm run build-core && npm run build-dts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:deploy": "npm run docs:build && gh-pages -d website"
},
"devDependencies": {
"@solidjs/testing-library": "^0.8.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"babel-preset-solid": "^1.9.0",
"dts-bundle-generator": "^9.5.0",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"gh-pages": "^6.3.0",
"less": "^4.6.0",
"less-loader": "^11.1.0",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-solid": "^2.10.0",
"vitepress": "^1.5.0",
"vitest": "^2.1.0"
},
"dependencies": {
"solid-js": "^1.9.0"
},
"peerDependencies": {
"klinecharts": ">=9.0.0",
"react": ">=18.0.0"
}
}