-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.66 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
68
69
{
"name": "emdash-plugin-modern-images",
"version": "1.3.0",
"description": "Converts images to modern formats (WebP, AVIF) with responsive srcset, disk caching, and LCP preload support",
"type": "module",
"license": "MIT",
"author": "Adriano Amalfi <adrianoamalfi@gmail.com> (https://adrianoamalfi.com)",
"repository": {
"type": "git",
"url": "https://github.com/adrianoamalfi/emdash-plugin-modern-images"
},
"keywords": [
"emdash",
"emdash-plugin",
"images",
"webp",
"avif",
"sharp",
"responsive",
"cms"
],
"exports": {
".": "./src/index.ts",
"./sandbox": "./src/sandbox-entry.ts",
"./astro/ModernImage": "./src/astro/ModernImage.astro",
"./astro/middleware": "./src/astro/middleware.ts"
},
"bin": {
"emdash-plugin-modern-images": "./src/bin/init.mjs"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"version": "node -p \"require('./package.json').version\""
},
"files": [
"src"
],
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"dependencies": {
"sharp": "^0.34.0"
},
"peerDependencies": {
"emdash": "^0.12.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}