-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.27 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.27 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@ethercorps/sveltekit-og",
"version": "4.3.0-next.3",
"license": "MIT",
"homepage": "https://sveltekit-og.dev",
"repository": "github:ethercorps/sveltekit-og",
"funding": "https://github.com/sponsors/ethercorps",
"author": "Shivam Meena <https://github.com/theetherGit>",
"description": "Dynamically generate Open Graph images from an HTML, CSS template or Svelte component using fast and efficient conversion from HTML > SVG > PNG",
"contributors": [
{
"name": "Shivam Meena",
"github": "https://github.com/theetherGit"
},
{
"name": "Jason",
"github": "https://github.com/jasongitmail"},
{
"name": "Mihkel Martin Kasterpalu",
"github": "https://github.com/MihkelMK"
},
{
"name": "Luke Parke",
"github": "https://github.com/LukasParke"
},
{
"name": "Willow (GHOST)",
"github": "https://github.com/ghostdevv"
},
{
"name": "Minseo Lee",
"github": "https://github.com/quiple"
}
],
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"build:examples": "pnpm -F \"./examples/**\" --parallel --color build",
"check:examples": "pnpm install -r",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "pnpm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"lint": "oxlint . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"publishBeta": "npm publish --tag beta"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js"
},
"./fonts": {
"types": "./dist/fonts.d.ts",
"import": "./dist/fonts.js"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.3",
"@sveltejs/adapter-vercel": "^5.10.3",
"@sveltejs/kit": "^2.53.4",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@types/node": "^24.11.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"css-tree": "^2.3.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-oxlint": "^1.55.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^16.5.0",
"oxlint": "^1.55.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"publint": "^0.1.16",
"rollup-plugin-visualizer": "^5.14.0",
"svelte": "^5.53.10",
"svelte-check": "^4.4.5",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^5.4.21",
"vitest": "^1.6.1"
},
"main": "./dist/index.js",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@resvg/resvg-wasm": "^2.6.2",
"satori": "^0.25.0",
"satori-html": "0.3.2",
"std-env": "^3.10.0",
"unwasm": "^0.5.3"
},
"peerDependencies": {
"@sveltejs/kit": ">=2.0.0"
}
}