-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.52 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.52 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
{
"name": "vite-plugin-open-graph",
"type": "module",
"version": "2.0.6",
"packageManager": "pnpm@10.17.0",
"description": "Generate open graph meta tags for your vite app.",
"author": {
"email": "lmmmmmm12138@gmail.com",
"name": "_lmmmmmm",
"url": "https://lmmmmmm.me"
},
"license": "MIT",
"homepage": "https://github.com/Lmmmmmm-bb/vite-plugin-open-graph#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Lmmmmmm-bb/vite-plugin-open-graph.git"
},
"bugs": "https://github.com/Lmmmmmm-bb/vite-plugin-open-graph/issues",
"keywords": [
"vite",
"vite-plugin",
"open-graph",
"open-graph-protocol"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./*"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"play": "vite playground",
"build": "tsdown",
"dev": "tsdown --watch src",
"lint": "eslint . --fix",
"prepublishOnly": "tsdown",
"release": "bumpp && npm publish",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^5.3.0",
"@types/node": "^24.5.2",
"bumpp": "^10.2.3",
"eslint": "^9.35.0",
"tsdown": "^0.15.2",
"typescript": "^5.9.2",
"vite": "^7.1.6",
"vitest": "^3.2.4"
}
}