mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 23:55:20 +00:00
24 lines
600 B
JSON
24 lines
600 B
JSON
{
|
|
"name": "@gitbook/proxy",
|
|
"description": "Host a GitBook site on your own domain as a subpath",
|
|
"version": "0.1.0",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"development": "./src/index.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"typescript": "^5.5.3"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf ./dist",
|
|
"unit": "bun test"
|
|
},
|
|
"files": ["dist", "src", "README.md", "CHANGELOG.md"]
|
|
}
|