-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "@husaria-solutions/solid-crypto-chart",
"version": "0.0.8",
"author": "Husaria Solutions",
"license": "MIT",
"description": "Crypto chart for SolidJS using Binance API",
"repository": {
"type": "git",
"url": "git+https://github.com/HusariaSolutions/solid-crypto-chart.git"
},
"main": "dist/index/index.common.js",
"module": "dist/index/index.module.js",
"types": "dist/index/index.d.ts",
"exports": {
".": {
"solid": "./dist/index/index.jsx",
"import": "./dist/index/index.module.js",
"browser": "./dist/index/index.module.js",
"require": "./dist/index/index.common.js",
"node": "./dist/index/index.common.js"
}
},
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "npx jest"
},
"files": [
"dist"
],
"devDependencies": {
"@solidjs/testing-library": "^0.8.5",
"@testing-library/jest-dom": "^6.1.6",
"@types/jest": "^29.5.11",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^3.3.2",
"resize-observer-polyfill": "^1.5.1",
"solid-jest": "^0.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"lightweight-charts": "^4.1.1",
"rollup": "^4.9.1",
"rollup-preset-solid": "^2.0.1",
"solid-js": "^1.8.7"
},
"bugs": {
"url": "https://github.com/HusariaSolutions/solid-crypto-chart/issues"
},
"homepage": "https://github.com/HusariaSolutions/solid-crypto-chart#readme",
"directories": {
"example": "example"
},
"keywords": [
"solidjs",
"crypto",
"chart",
"binance",
"tradeview"
]
}