-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "@lightningchart/react-time-series-chart",
"author": "LightningChart Ltd.",
"license": "MIT",
"version": "0.0.8",
"description": "A React component for interactive, heavy-duty Time Series Charts",
"homepage": "https://github.com/Arction/lcjs-react-template/tree/master/react-time-series-chart",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"private": false,
"engines": {
"node": ">=12"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md",
"package.json"
],
"scripts": {
"ts": "shx rm -r temp & tsc -p ./tsconfig.json",
"build": "rm -r dist & rollup -c --bundleConfigAsCjs",
"pack": "npm run build && sh ./release/package.sh",
"pub": "npm version patch && npm run pack --no-git-tag-version && npm publish --access=public ./package"
},
"keywords": [
"Arction",
"lightningChart",
"lightning chart",
"chartXY",
"Chart",
"React Chart",
"Time series",
"Time series chart",
"Time chart",
"Time domain chart",
"Time axis"
],
"dependencies": {
"@lightningchart/lcjs": "^5.2.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.2.28",
"@types/rollup-plugin-peer-deps-external": "^2.2.3",
"rollup": "^4.0.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"shx": "^0.3.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}