-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.83 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
63
64
65
66
67
68
{
"name": "@highcharts/grid-lite-react",
"version": "1.0.0",
"description": "Official React integration for Highcharts Grid Lite",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE.txt",
"README.md"
],
"keywords": [
"highcharts",
"grid",
"react",
"data-grid",
"table"
],
"author": "Highsoft AS",
"license": "SEE LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/highcharts/grid-react.git",
"directory": "packages/grid-lite-react"
},
"homepage": "https://www.highcharts.com",
"bugs": {
"url": "https://github.com/highcharts/grid-react/issues"
},
"scripts": {
"build": "pnpm clean:dist && rollup -c",
"lint": "eslint src --ext .ts,.tsx",
"clean:dist": "rimraf dist",
"clean": "rimraf node_modules dist",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@highcharts/grid-lite": "^2.1.0"
},
"devDependencies": {
"@highcharts/grid-shared-react": "workspace:*",
"@types/react": ">=18",
"@types/react-dom": ">=18",
"react": ">=18",
"react-dom": ">=18",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.3.0"
},
"peerDependencies": {
"@types/react": ">=18",
"@types/react-dom": ">=18",
"react": ">=18",
"react-dom": ">=18"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
}