-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 786 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 786 Bytes
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
{
"name": "next-single-file",
"version": "1.0.6",
"description": "Convert Next.js static export to a single HTML file with hash routing",
"bin": {
"next-single-file": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simples-tools/next-single-file.git"
},
"author": "@brrock <github.com/brrock>",
"files": [
"dist/cli.js"
],
"scripts": {
"build": "bun build ./index.ts --target bun --outfile ./dist/cli.js && chmod +x ./dist/cli.js",
"test": "bun test",
"benchmark": "bun run src/benchmark.ts",
"convert": "bun run ./index.ts"
},
"type": "module",
"workspaces": [
"test-next-app"
],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}