-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "image-resize",
"version": "1.4.2",
"description": "Resize image for javascript",
"files": [
"libs"
],
"main": "libs/imageResize.umd.js",
"module": "libs/imageResize.es.js",
"exports": {
".": {
"import": "./libs/imageResize.es.js",
"require": "./libs/imageResize.umd.js"
}
},
"type": "module",
"types": "libs/types.d.ts",
"scripts": {
"dev": "bun run --bun vite --config vite.config/vite.docs.js",
"prebuild": "rm -rf ./docs && rm -rf ./libs",
"build": "bun run --bun vite build --emptyOutDir --config vite.config/vite.docs.js && bun run --bun vite build --emptyOutDir --config vite.config/vite.libs.js && cp types.d.ts libs",
"preview": "bun run --bun vite preview --config vite.config/vite.docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kode-team/image-resize.git"
},
"keywords": [
"image",
"resize",
"resize-image",
"canvas",
"javascript",
"js"
],
"author": {
"name": "redgoose",
"email": "[email protected]",
"url": "https://redgoose.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kode-team/image-resize/issues"
},
"homepage": "https://kode-team.github.io/image-resize/",
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {},
"devDependencies": {
"vite": "^5.2.12"
}
}