-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 999 Bytes
/
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
{
"name": "@osx11/react-simple-dnd-table",
"version": "1.0.13",
"description": "A simple Drag-To-Reorder table for React",
"repository": {
"type": "git",
"url": "https://github.com/osx11/react-simple-dnd-table.git"
},
"author": "osx11 <[email protected]>",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/styled-components": "^5.1.32",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"react-dom": "^18.2.0",
"rollup": "^4.6.1",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"mobx": "^6.12.0",
"mobx-react": "^9.1.0",
"react": "^18.2.0",
"styled-components": "^6.1.1"
}
}