-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "lightweight-charts-drawing",
"version": "0.1.1",
"description": "Drawing tools plugin for TradingView's lightweight-charts",
"type": "module",
"main": "./dist/lightweight-charts-drawing.umd.js",
"module": "./dist/lightweight-charts-drawing.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/lightweight-charts-drawing.es.js",
"require": "./dist/lightweight-charts-drawing.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"demo": "vite --config vite.demo.config.ts",
"build:demo": "vite build --config vite.demo.config.ts"
},
"peerDependencies": {
"lightweight-charts": "^5.0.0"
},
"devDependencies": {
"lightweight-charts": "^5.0.9",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0"
},
"keywords": [
"trading",
"charts",
"lightweight-charts",
"drawing-tools",
"technical-analysis",
"trendline",
"fibonacci"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deepentropy/lightweight-charts-drawing"
},
"dependencies": {
"fancy-canvas": "^2.1.0"
}
}