-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 933 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
40
41
{
"name": "use-sortablejs",
"version": "1.1.7",
"type": "module",
"source": "src/index.ts",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"/build"
],
"sideEffects": false,
"license": "MIT",
"author": "https://github.com/harrel56",
"homepage": "https://harrel56.github.io/use-sortablejs",
"description": "SortableJS ported to React hooks",
"repository": {
"type": "git",
"url": "git://github.com/harrel56/use-sortablejs.git",
"directory": "main"
},
"scripts": {
"build": "bun run build.ts --bun"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"@types/react": "^17.0.0 || ^18.0.0",
"sortablejs": "^1.0.0",
"@types/sortablejs": "^1.0.0"
},
"devDependencies": {
"bun-plugin-dts": "0.2.1",
"typescript": "5.7.2",
"@types/bun": "1.1.14"
},
"keywords": [
"react",
"sortable",
"sortablejs",
"drag"
]
}