-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "eleventy-plugin-og-image",
"version": "4.0.1",
"description": "A plugin to create Open Graph Images from JSX for Eleventy.",
"author": {
"name": "Kilian Finger",
"email": "npm@kilianfinger.com",
"url": "https://www.kilianfinger.com/"
},
"license": "MIT",
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"og:image"
],
"repository": {
"type": "git",
"url": "https://github.com/KiwiKilian/eleventy-plugin-og-image.git"
},
"bugs": {
"url": "https://github.com/KiwiKilian/eleventy-plugin-og-image/issues"
},
"homepage": "https://github.com/KiwiKilian/eleventy-plugin-og-image#readme",
"main": "./.eleventy.js",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./.eleventy.js"
},
"./package.json": "./package.json",
"./og-image": "./src/OgImage.js",
"./utils": "./src/utils/index.js"
},
"types": "./index.d.ts",
"files": [
".eleventy.js",
"index.d.ts",
"src"
],
"publishConfig": {
"provenance": true
},
"scripts": {
"semantic-release": "semantic-release",
"test": "ava test/**/*.test.js",
"lint": "eslint .",
"prettier": "prettier --write .",
"example": "npx @11ty/eleventy --config=example/.eleventy.js --input=example --output=example/_site",
"example:start": "npm run example -- --serve",
"example:build": "npm run example",
"example:clean": "rimraf ./example/_site"
},
"engines": {
"node": ">=18"
},
"11ty": {
"compatibility": ">=3.0.0"
},
"peerDependencies": {
"@11ty/eleventy": ">=3.0.0"
},
"dependencies": {
"@11ty/eleventy-utils": "^1.0.3",
"@resvg/resvg-js": "^2.6.2",
"satori": "^0.12.0",
"satori-html": "^0.3.2",
"sharp": "^0.33.5",
"yoga-wasm-web": "^0.3.3"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"@fontsource/inter": "5.1.0",
"@kiwikilian/eslint-config": "1.1.0",
"@kiwikilian/prettier-config": "1.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"ava": "6.2.0",
"eslint": "8.57.1",
"prettier": "3.3.3",
"prettier-plugin-jinja-template": "2.0.0",
"prettier-plugin-jsdoc": "1.3.0",
"semantic-release": "24.2.0",
"twemoji": "14.0.2"
}
}