-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "@minissg/page",
"version": "1.0.2",
"description": "simple page organization management for Minissg",
"homepage": "https://github.com/uenoB/minissg/tree/main/packages/page#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uenoB/minissg.git",
"directory": "packages/page"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=16.11"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {},
"module": "dist/index.js",
"main": "dist/index.cjs",
"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"
],
"dependencies": {
"@minissg/async": "^1.0.1",
"debug": "^4.4.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"vite-plugin-minissg": "^4.1.3"
}
}