-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "ezog",
"version": "0.4.0",
"description": "Easily generate OG images dynamically without using a browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"lint-fix": "eslint --fix src/ && prettier --write src/"
},
"type": "module",
"files": [
"dist/**/*",
"cloudflare/**/*"
],
"keywords": [
"open graph image",
"open graph",
"og image",
"og:image",
"social",
"card",
"image"
],
"author": "kosei28",
"repository": {
"type": "git",
"url": "https://github.com/kosei28/ezog.git"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/opentype.js": "^1.3.4",
"@types/twemoji-parser": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"esbuild": "^0.16.12",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"make-dir": "^3.1.0",
"prettier": "^2.8.1",
"rollup": "^3.9.0",
"rollup-plugin-dts": "^5.1.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"@resvg/resvg-js": "^2.2.0",
"@resvg/resvg-wasm": "^2.2.0",
"base64-arraybuffer": "^1.0.2",
"opentype.js": "^1.3.4",
"twemoji": "^14.0.2",
"twemoji-parser": "^14.0.0"
}
}