@gunshi/bone 0.27.0-alpha.8 → 0.27.0-beta.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.
- package/README.md +13 -1
- package/lib/index.d.ts +666 -110
- package/lib/index.js +203 -80
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# `@gunshi/bone`
|
|
2
2
|
|
|
3
|
+
[![Version][npm-version-src]][npm-version-href]
|
|
4
|
+
[![InstallSize][install-size-src]][install-size-src]
|
|
5
|
+
[![JSR][jsr-src]][jsr-href]
|
|
6
|
+
|
|
3
7
|
> gunshi minimum
|
|
4
8
|
|
|
5
9
|
This package exports the bellow APIs and types.
|
|
6
10
|
|
|
7
|
-
- `cli`: The main CLI function to run the command, **not included
|
|
11
|
+
- `cli`: The main CLI function to run the command, **not included `@gunshi/plugin-global` and `@gunshi/plugin-renderer` built-in plugins**.
|
|
8
12
|
- some basic type definitions only.
|
|
9
13
|
|
|
10
14
|
<!-- eslint-disable markdown/no-missing-label-refs -->
|
|
@@ -65,3 +69,11 @@ await cli(process.argv.slice(2), entry, {
|
|
|
65
69
|
## ©️ License
|
|
66
70
|
|
|
67
71
|
[MIT](http://opensource.org/licenses/MIT)
|
|
72
|
+
|
|
73
|
+
<!-- Badges -->
|
|
74
|
+
|
|
75
|
+
[npm-version-src]: https://img.shields.io/npm/v/@gunshi/bone?style=flat
|
|
76
|
+
[npm-version-href]: https://npmjs.com/package/@gunshi/bone@alpha
|
|
77
|
+
[jsr-src]: https://jsr.io/badges/@gunshi/bone
|
|
78
|
+
[jsr-href]: https://jsr.io/@gunshi/bone
|
|
79
|
+
[install-size-src]: https://pkg-size.dev/badge/install/57026
|