-
Notifications
You must be signed in to change notification settings - Fork 301
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.59 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
69
{
"name": "@hono/ssg-plugins-essential",
"version": "0.1.0",
"description": "Essential plugins for Hono SSG",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc -b tsconfig.json",
"test": "vitest"
},
"exports": {
"./sitemap": {
"import": {
"types": "./dist/sitemap.d.ts",
"default": "./dist/sitemap.js"
},
"require": {
"types": "./dist/sitemap.d.cts",
"default": "./dist/sitemap.cjs"
}
},
"./robots-txt": {
"import": {
"types": "./dist/robots-txt.d.ts",
"default": "./dist/robots-txt.js"
},
"require": {
"types": "./dist/robots-txt.d.cts",
"default": "./dist/robots-txt.cjs"
}
},
"./rss": {
"import": {
"types": "./dist/rss.d.ts",
"default": "./dist/rss.js"
},
"require": {
"types": "./dist/rss.d.cts",
"default": "./dist/rss.cjs"
}
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/honojs/middleware.git",
"directory": "packages/ssg-plugins-essential"
},
"homepage": "https://github.com/honojs/middleware",
"peerDependencies": {
"hono": ">=4.8.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"tsdown": "^0.21.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0-beta.1"
}
}