generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
73 lines (73 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@thisbeyond/solid-dnd",
"version": "0.7.5",
"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/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"sideEffects": false,
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"prepublishOnly": "pnpm 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",
"tsup": "^6.5.0",
"tsup-preset-solid": "^0.1.4",
"solid-js": "^1.5",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.6.0"
}
}