-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.22 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
{
"name": "svelte-component-to-image",
"version": "1.0.15",
"license": "MIT",
"author": "Stephen Gunn",
"homepage": "https://github.com/StephenGunn/svelte-component-to-image",
"repository": {
"type": "git",
"url": "https://github.com/StephenGunn/svelte-component-to-image.git"
},
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && svelte-package",
"test": "playwright test && npm run test:unit -- --run",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.8.0",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^5.1.13",
"svelte-check": "^4.0.6",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"juice": "^11.0.0",
"satori": "^0.11.3",
"satori-html": "^0.3.2"
},
"type": "module",
"keywords": [
"svelte"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"typesVersions": {
">4.0": {
"font-handling": [
"./dist/font-handling/index.d.ts"
],
"index.d.ts": [
"./dist/index.d.ts"
],
"processing/nodes_render": [
"./dist/processing/nodes_render.d.ts"
],
"processing/png_render": [
"./dist/processing/png_render.d.ts"
],
"processing/svg_render": [
"./dist/processing/svg_render.d.ts"
]
}
}
}