-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "@minissg/render-react",
"version": "3.0.1",
"description": "Preact plugin for Minissg",
"homepage": "https://github.com/uenoB/minissg/tree/main/packages/render-react#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uenoB/minissg.git",
"directory": "packages/render-react"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"module": "dist/index.js",
"main": "dist/index.cjs",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/index.cjs",
"dist/index.cjs.map",
"dist/index.d.cts",
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map"
],
"keywords": [
"vite-plugin-minissg",
"react"
],
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"vite-plugin-minissg": "^1 || ^3 || ^4"
}
}