-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.72 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@bashbers/astro-image-dithering",
"version": "1.2.3",
"description": "Astro image dithering plugin - converts png's in project to dithered.pngs and uses them inside markdown files.",
"scripts": {
"start-astro": "astro --root demo dev",
"build-astro": "astro --root demo build",
"serve-astro": "astro --root demo preview",
"build": "npm run clean && npx tsc -p tsconfig.json && cp ./packages/dither-images/dither-image-toggle.css ./dist",
"clean": "del-cli ./dist",
"prepack": "npm run build"
},
"type": "module",
"author": "https://github.com/bashbers/",
"license": "GPL-3.0",
"dependencies": {
"optipng": "^4.2.0",
"pngjs": "^7.0.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/node": "^22.15.3",
"@types/pngjs": "^6.0.5",
"@types/unist": "^3.0.3",
"astro": "^5.7.10",
"del-cli": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"workspaces": [
"demo",
"packages/**/*"
],
"files": [
"packages/dither-images",
"dist",
"!*.png"
],
"exports": {
".": {
"import": "./dist/index.js"
},
"./dist/dither-image-toggle.css": "./dist/dither-image-toggle.css",
"./dist/dithered-image-container.js": "./dist/dithered-image-container.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bashbers/dithering.git"
},
"keywords": [
"dithering",
"dither",
"astro",
"withastro",
"media",
"image",
"perf",
"optimization"
],
"bugs": {
"url": "https://github.com/bashbers/dithering/issues"
},
"homepage": "https://github.com/bashbers/dithering#readme"
}