-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "cropt",
"version": "1.0.2",
"description": "A lightweight JavaScript image cropper",
"files": [
"src/cropt.*"
],
"types": "./src/cropt.d.ts",
"type": "module",
"main": "./src/cropt.js",
"devDependencies": {
"bootstrap": "^5.3.8",
"gh-pages": "^6.3.0",
"http-server": "^14.1.1",
"prettier": "^3.8.1",
"sass": "1.78",
"shx": "^0.4.0",
"typescript": "^5.9.3"
},
"scripts": {
"deploy": "gh-pages -d ./demo",
"prepare": "tsc && npm run mkdir && npm run copy && npm run sass",
"mkdir": "shx mkdir -p demo/build",
"copy": "shx cp src/{cropt,demo}.js src/cropt.css node_modules/bootstrap/dist/js/bootstrap.bundle.min.* demo/build/",
"sass": "sass demo/styles.scss demo/build/bs-custom.css --style=compressed",
"format": "prettier . --write",
"start": "http-server ./demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devtheorem/cropt.git"
},
"keywords": [
"crop",
"cropper",
"image",
"cropping"
],
"author": "Theodore Brown <theodorejb@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devtheorem/cropt/issues"
},
"homepage": "http://devtheorem.github.io/cropt/",
"cspell": {
"words": [
"Cropt",
"cropt"
]
}
}