-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.45 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
{
"name": "og-img",
"description": "Generate dynamic Open Graph images for your website",
"version": "0.2.1",
"license": "MPL-2.0",
"author": "Fabian Hiller",
"repository": {
"type": "git",
"url": "https://github.com/fabian-hiller/og-img"
},
"keywords": [
"open graph",
"image",
"satori",
"resvg",
"html",
"png",
"response"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit",
"format": "prettier --write ./src",
"format.check": "prettier --check ./src",
"build": "tsup",
"publish": "npm publish"
},
"devDependencies": {
"@types/eslint": "^8.56.1",
"@types/react": "^18.2.47",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.1.1",
"react": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@resvg/resvg-wasm": "^2.6.2",
"satori": "^0.10.13",
"satori-html": "^0.3.2"
}
}