-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
35 lines (35 loc) · 858 Bytes
/
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
{
"name": "react-crypto-chart",
"version": "0.0.6",
"description": "crypto chart widget for react using binance api",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"author": "Justin K Xavier",
"repository": {
"url": "https://github.com/justinkx/react-crypto-chart.git"
},
"license": "MIT",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"files": [
"/lib"
],
"devDependencies": {
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"lightweight-charts": "^3.8.0"
}
}