teishoku 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +26 -0
  2. package/bin/cli +2 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # bento
2
+
3
+ ## What is this
4
+
5
+ This is a fullstack framework.
6
+
7
+ ## How to use it
8
+
9
+ ```bash
10
+ # npm
11
+ npx bento <command>
12
+
13
+ # yarn
14
+ yarn dlx bento <command>
15
+
16
+ # pnpm
17
+ pnpm dlx bento <command>
18
+
19
+ # deno
20
+ deno run -A npm:bento <command>
21
+
22
+ # bun(recommended)
23
+ bunx bento <command>
24
+ ```
25
+
26
+ full docs in [here](https://github.com/bento-js/cli)
package/bin/cli ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "@bento-js/cli"
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "teishoku",
3
+ "version": "1.0.0",
4
+ "bin": {
5
+ "teishoku": "./cli.js"
6
+ },
7
+ "dependencies": {
8
+ "@teishoku/cli": "latest"
9
+ }
10
+ }