forked from SteJaySulli/data-table-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1009 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1009 Bytes
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": "data-table-react",
"version": "0.0.1",
"description": "React front end for the data-table-laravel composer package",
"module": "dist/index.js",
"files": [
"dist"
],
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Stephen Sullivan",
"license": "MIT",
"dependencies": {
"data-table-react": "file:packages/data-table-react"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-sucrase": "^5.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/react": "^19.0.8",
"react": "^19.0.0",
"rollup": "^4.34.3",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}