-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.94 KB
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": "0.0.1",
"name": "solid-gridstack",
"description": "solid-js wrapper for gridstack.js",
"license": "MIT",
"author": "Felix Wieland",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/FelixWieland/solid-gridstack.git"
},
"homepage": "https://github.com/FelixWieland/solid-gridstack#readme",
"bugs": {
"url": "https://github.com/FelixWieland/solid-gridstack/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"
}
},
"scripts": {
"dev": "vite serve dev",
"build-dev": "vite build 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": {
"gridstack": "^7.1.0"
},
"peerDependencies": {
"solid-js": ">=1.0.0"
},
"devDependencies": {
"prettier": "2.7.1",
"rollup": "^2.79.1",
"rollup-preset-solid": "^1.4.0",
"rollup-plugin-import-css": "^3.1.0",
"solid-js": "^1.6.1",
"taze": "^0.7.6",
"typescript": "^4.8.4",
"vite": "^3.2.1",
"vite-plugin-solid": "^2.3.10"
},
"keywords": [
"solid"
],
"packageManager": "pnpm@7.5.0"
}