-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from StauroXYZ/docs
feat: develop
- Loading branch information
Showing
27 changed files
with
1,371 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,6 @@ | |
"bin": { | ||
"blumen": "./dist/cli.js" | ||
}, | ||
"exports": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/StauroXYZ/blumen.git" | ||
|
@@ -17,7 +15,8 @@ | |
"dev": "tsx src/index.ts", | ||
"build": "tsc", | ||
"postbuild": "chmod +x ./dist/cli.js", | ||
"prepublishOnly": "pnpm build" | ||
"prepublishOnly": "pnpm build", | ||
"lint": "eslint . --config eslint.config.js" | ||
}, | ||
"keywords": [ | ||
"ipfs", | ||
|
@@ -30,7 +29,7 @@ | |
], | ||
"author": "v1rtl <[email protected]>", | ||
"engines": { | ||
"node": ">=16.8" | ||
"node": ">=16.14" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
|
@@ -50,12 +49,14 @@ | |
"viem": "^1.19.3" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^8.54.0", | ||
"@stylistic/eslint-plugin": "^1.4.0", | ||
"@types/node": "^20.9.1", | ||
"@types/semver": "^7.5.5", | ||
"@types/varint": "^6.0.3", | ||
"@typescript-eslint/parser": "^6.11.0", | ||
"colorette": "^2.0.20", | ||
"eslint": "^8.54.0", | ||
"globals": "^13.23.0", | ||
"semantic-release": "^22.0.8", | ||
"typescript": "^5.2.2" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import { defineConfig } from 'vitepress' | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: 'Blumen', | ||
description: 'a CLI and API library to deploy apps on the decentralized web using IPFS and Ethereum.', | ||
themeConfig: { | ||
nav: [{ text: 'Docs', link: '/' }], | ||
search: { | ||
provider: 'local', | ||
}, | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Introduction', | ||
items: [ | ||
{ | ||
text: 'Getting Started', | ||
link: '/', | ||
}, | ||
{ | ||
text: 'Providers', | ||
link: '/docs/providers', | ||
}, | ||
], | ||
}, | ||
{ | ||
text: 'CLI', | ||
items: [ | ||
{ | ||
text: 'Deploy', | ||
link: '/docs/cli/deploy', | ||
}, | ||
{ | ||
text: 'Status', | ||
link: '/docs/cli/status', | ||
}, | ||
{ | ||
text: 'ENS', | ||
link: '/docs/cli/ens', | ||
}, | ||
], | ||
}, | ||
], | ||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/StauroXYZ/blumen' }, | ||
], | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import './style.css' | ||
import Theme from 'vitepress/theme' | ||
import { h } from 'vue' | ||
|
||
export default { | ||
extends: Theme, | ||
Layout: () => { | ||
return h(Theme.Layout, null, { | ||
// https://vitepress.dev/guide/extending-default-theme#layout-slots | ||
}) | ||
}, | ||
} |
Oops, something went wrong.