-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.08 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@flexmonster/react",
"version": "3.0.0-preview.3.1",
"license": "https://www.flexmonster.com/software-license-agreement/",
"homepage": "https://prerelease.flexmonster.com/",
"description": "React wrapper for Flexmonster Pivot",
"author": {
"name": "Flexmonster",
"email": "help@flexmonster.com"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./next": {
"import": "./dist/next/index.esm.js",
"require": "./dist/next/index.cjs.js",
"types": "./dist/next/index.d.ts"
},
"./next/*": {
"import": "./dist/next/*.mjs",
"require": "./dist/next/*.cjs",
"types": "./dist/next/*.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"nextjs",
"next.js",
"flexmonster",
"pivot-table",
"pivot",
"charts",
"data-visualization",
"ssr",
"server-side-rendering",
"client-component"
],
"repository": {
"type": "git",
"url": "https://github.com/flexmonster/react"
},
"peerDependencies": {
"@flexmonster/js": "3.0.0-preview.3.1",
"next": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"next": "^15.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rollup": "^4.54.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^5.0.0"
}
}