forked from HusariaSolutions/solid-crypto-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 KB
/
package.json
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.4",
"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": {
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^28.1.4",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.2",
"node-fetch": "^3.2.6",
"resize-observer-polyfill": "^1.5.1",
"solid-jest": "^0.2.0",
"ts-jest": "^28.0.5",
"typescript": "^4.3.2"
},
"dependencies": {
"lightweight-charts": "^3.8.0",
"rollup": "^2.75.7",
"rollup-preset-solid": "^1.4.0",
"solid-js": "^1.4.6",
"solid-testing-library": "^0.3.0"
},
"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"
]
}