-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "vite-imagetools",
"description": "Load and transform images using a toolbox of import directives!",
"version": "7.0.4",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"homepage": "https://github.com/JonasKruckenberg/imagetools/tree/main/packages/vite",
"author": "jkruckenberg <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JonasKruckenberg/imagetools.git"
},
"keywords": [
"resize-images",
"responsive-images",
"vite",
"image",
"vite-plugin"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "rollup -cw",
"build": "rollup -c",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.5",
"imagetools-core": "workspace:^",
"sharp": "^0.33.4"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest-image-snapshot": "^6.1.0",
"@types/jsdom": "^21.1.1",
"@types/picomatch": "^3.0.0",
"@vitest/coverage-v8": "^1.4.0",
"imagetools-core": "workspace:^",
"jest-image-snapshot": "^6.2.0",
"jsdom": "^25.0.0",
"picomatch": "^4.0.0",
"rollup": "^4.13.0",
"sharp": "^0.33.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"vite": "^5.2.6",
"vitest": "^1.4.0"
}
}