@nulab/bee 0.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.
@@ -0,0 +1,23 @@
1
+ name: Initial Release
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ permissions:
7
+ contents: read
8
+
9
+ jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 24
18
+ registry-url: https://registry.npmjs.org
19
+
20
+ - name: Publish v0.0.0 to npm
21
+ run: npm publish --access public
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # bee
2
+
3
+ Bring [Backlog](https://backlog.com/) to your command line.
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@nulab/bee",
3
+ "version": "0.0.0",
4
+ "description": "Bring Backlog to your command line",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/nulab/bee.git"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ }
13
+ }