-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.63 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
74
{
"name": "@zentered/solid-image-crop",
"version": "0.0.1",
"private": false,
"description": "Solid.js simple image crop tool using Cropper.js",
"keywords": [
"solidjs",
"solid-start",
"cropper.js",
"imagecrop",
"image",
"crop",
"cropper"
],
"homepage": "https://github.com/zentered/solid-image-crop#readme",
"bugs": {
"url": "https://github.com/zentered/solid-image-crop/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/solid-image-crop.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)"
],
"type": "module",
"main": "src/index.jsx",
"files": [
"src"
],
"scripts": {
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,md,yaml}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"cropperjs": "^1.6.2",
"solid-headless": "^0.13.1",
"solid-heroicons": "^3.2.4",
"solid-js": "^1.8.22"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-solid": "^0.14.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"peerDependencies": {
"solid-js": ">=1.6.0"
}
}