generated from ryohidaka/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.94 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
{
"name": "vitepress-plugin-og-image",
"version": "0.1.1",
"description": "A VitePress plugin to generate OGP images.",
"keywords": [
"vitepress",
"vitepress-plugin",
"markdown",
"open-graph-protocol",
"opengraph",
"open-graph",
"ogp"
],
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build --emptyOutDir false",
"preview": "vite preview",
"prepare": "npx husky install",
"test": "VITEST_MIN_THREADS=6 VITEST_MAX_THREADS=6 vitest run --passWithNoTests",
"coverage": "vitest run --coverage",
"format": "npx prettier . --write",
"docs": "npx typedoc",
"docs:dev": "vitepress dev src/example/docs",
"docs:build": "vitepress build src/example/docs",
"docs:preview": "vitepress preview src/example/docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryohidaka/vitepress-plugin-og-image.git"
},
"author": "ryohidaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryohidaka/vitepress-plugin-og-image/issues"
},
"homepage": "https://github.com/ryohidaka/vitepress-plugin-og-image#readme",
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.5.2",
"@types/react": "^18.3.3",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.7.0",
"happy-dom": "^15.7.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.1.0",
"vite-tsconfig-paths": "^5.0.1",
"vitepress": "^1.2.2",
"vitest": "^2.0.5"
},
"dependencies": {
"satori": "^0.10.13",
"sharp": "^0.33.4"
},
"peerDependencies": {
"react": "^18.2.0"
}
}