-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "@qognicafinance/react-lightweight-charts",
"version": "2.0.0",
"description": "A simple react wrapper for the tradingview lightweight charts module by Qognica Finance.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "npm run prebuild && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Qognica/react-lightweight-charts.git"
},
"author": "Qognica Finance (https://qognicafinance.com)",
"keywords": [
"lightweight",
"charts",
"react",
"wrapper",
"tradingview"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Qognica/react-lightweight-charts/issues"
},
"homepage": "https://github.com/Qognica/react-lightweight-charts#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/react": "^18.0.17",
"react": "^18.2.0",
"rollup": "^2.77.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"lightweight-charts": "^3.8.0",
"rollup-plugin-dts": "^4.2.2"
}
}