-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1022 Bytes
/
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
{
"name": "cropt",
"version": "0.9.0",
"description": "A lightweight JavaScript image cropper",
"files": [
"src/cropt.*"
],
"types": "./src/cropt.d.ts",
"type": "module",
"main": "./src/cropt.js",
"devDependencies": {
"bootstrap": "^5.3.3",
"gh-pages": "^6.2.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^2.0.0",
"http-server": "^14.1.1",
"sass": "^1.77.6",
"typescript": "^5.6.3"
},
"scripts": {
"deploy": "gh-pages -d ./demo",
"prepare": "tsc && grunt --gruntfile Gruntfile.cjs",
"start": "http-server ./demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theodorejb/cropt.git"
},
"keywords": [
"crop",
"cropper",
"image",
"cropping"
],
"author": "Theodore Brown <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theodorejb/cropt/issues"
},
"homepage": "http://theodorejb.github.io/cropt"
}