@gander-labs/package-crafting-playground 0.3.5
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.
- package/LICENSE +661 -0
- package/README.md +27 -0
- package/dist/package-crafting-playground.js +12701 -0
- package/package.json +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# package-crafting-playground
|
|
2
|
+
|
|
3
|
+
A Bun CLI starter template: TypeScript CLI built with
|
|
4
|
+
[Optique](https://github.com/dahlia/optique), self-update via GitHub
|
|
5
|
+
Releases, and a CI/release pipeline that publishes to npm and attaches a
|
|
6
|
+
compiled binary to each release.
|
|
7
|
+
|
|
8
|
+
## Quick start
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
bun install
|
|
12
|
+
bun run index.ts --help
|
|
13
|
+
bun test
|
|
14
|
+
bun run build
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Docs
|
|
18
|
+
|
|
19
|
+
- [TEMPLATE.md](TEMPLATE.md) — turning this template into a new project
|
|
20
|
+
(what to rename, what to configure).
|
|
21
|
+
- [howto.md](howto.md) — publishing to npm and JSR.
|
|
22
|
+
- [CHANGELOG.md](CHANGELOG.md) — release history.
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
[AGPL-3.0-only](LICENSE) — modified versions run as a network service must
|
|
27
|
+
also make their source available to users of that service.
|