forked from thisbeyond/solid-dnd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@thisbeyond/solid-dnd",
"version": "0.7.3",
"description": "A lightweight drag and drop toolkit for Solid.",
"homepage": "https://github.com/thisbeyond/solid-dnd#readme",
"license": "MIT",
"author": "Martin Pengelly-Phillips",
"keywords": [
"drag and drop",
"dnd",
"sortable",
"reorder",
"reorderable",
"solid",
"solidjs"
],
"type": "module",
"files": [
"dist"
],
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"solid": "./dist/source/index.jsx",
"default": "./dist/esm/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thisbeyond/solid-dnd.git"
},
"peerDependencies": {
"solid-js": "^1.5"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"prettier": "^2.7.1",
"release-it": "^15.5.0",
"rollup": "^2.79.1",
"rollup-preset-solid": "^1.4.0",
"solid-js": "^1.5",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public"
}
}