forked from nuxt-modules/og-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.19 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
{
"name": "nuxt-og-image",
"type": "module",
"version": "1.5.5",
"packageManager": "[email protected]",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://github.com/harlan-zw/nuxt-og-image#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/harlan-zw/nuxt-og-image.git"
},
"bugs": {
"url": "https://github.com/harlan-zw/nuxt-og-image/issues"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && pnpm build:module && pnpm build:client",
"build:client": "nuxi generate client",
"build:module": "nuxt-build-module",
"lint": "eslint \"**/*.{ts,vue,json,yml}\" --fix",
"dev": "nuxi dev .playground",
"dev:build": "nuxi build .playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare .playground",
"release": "bumpp package.json --commit --push --tag",
"test": "pnpm lint"
},
"dependencies": {
"@nuxt/kit": "3.3.1",
"@types/fs-extra": "^11.0.1",
"birpc": "^0.2.8",
"chalk": "^5.2.0",
"chrome-launcher": "^0.15.1",
"defu": "^6.1.2",
"execa": "^7.1.1",
"fast-glob": "^3.2.12",
"flatted": "^3.2.7",
"fs-extra": "^11.1.0",
"launch-editor": "^2.6.0",
"ohash": "^1.0.0",
"pathe": "^1.1.0",
"playwright-core": "^1.31.2",
"radix3": "^1.0.0",
"satori": "0.4.3",
"satori-html": "^0.3.2",
"sirv": "^2.0.2",
"std-env": "^3.3.2",
"svg2png-wasm": "^1.3.4",
"tinyws": "^0.1.0",
"twemoji": "^14.0.2",
"ufo": "^1.1.1",
"ws": "^8.13.0",
"yoga-wasm-web": "^0.3.3"
},
"devDependencies": {
"@antfu/eslint-config": "^0.36.0",
"@nuxt/devtools-edge": "0.2.5-27981287.ed164c8",
"@nuxt/module-builder": "^0.2.1",
"@nuxt/test-utils": "3.3.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/ws": "^8.5.4",
"bumpp": "^9.0.0",
"eslint": "8.36.0",
"jest-image-snapshot": "^6.1.0",
"nuxt": "^3.3.1",
"puppeteer": "^19.7.5",
"vitest": "^0.29.3"
}
}