generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.72 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
{
"version": "2.1.2",
"name": "solid-sortablejs",
"description": "A sortable library for solid",
"license": "MIT",
"author": "Supertigerr",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/Supertigerr/solid-sortablejs.git"
},
"homepage": "https://github.com/Supertigerr/solid-sortablejs#readme",
"bugs": {
"url": "https://github.com/Supertigerr/solid-sortablejs/issues"
},
"private": false,
"sideEffects": false,
"type": "module",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"solid": "./dist/source/index.jsx",
"import": "./dist/esm/index.js",
"browser": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"require": "./dist/cjs/index.js",
"node": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"dev": "vite serve dev",
"test": "echo \"test not setup\"",
"build": "rollup -c",
"prepublishOnly": "pnpm build",
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"update-deps": "taze -w && pnpm i",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@types/sortablejs": "^1.15.0",
"sortablejs": "^1.15.0"
},
"peerDependencies": {
"solid-js": ">=1.0.0"
},
"devDependencies": {
"prettier": "2.8.3",
"rollup": "^3.28.1",
"rollup-preset-solid": "^2.0.1",
"solid-js": "^1.6.9",
"taze": "^0.8.5",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-solid": "^2.5.0"
},
"keywords": [
"solid"
],
"packageManager": "[email protected]"
}