@citadelfoundation/box 0.0.1 → 0.0.6
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 +1 -1
- package/bin/index.js +4 -0
- package/package.json +6 -3
- package/.github/workflows/npm-publish.yml +0 -32
package/README.md
CHANGED
package/bin/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@citadelfoundation/box",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "The sovereign runtime. Your machine, your rules. Zero-trust microVM.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
],
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "https://github.com/CitadelFoundation/box"
|
|
21
|
+
"url": "git+https://github.com/CitadelFoundation/box.git"
|
|
22
22
|
},
|
|
23
|
-
"
|
|
23
|
+
"homepage": "https://github.com/CitadelFoundation/box#readme",
|
|
24
|
+
"bugs": "https://github.com/CitadelFoundation/box/issues",
|
|
25
|
+
"license": "TBD",
|
|
26
|
+
"files": ["bin", "README.md"]
|
|
24
27
|
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
name: Publish to npm
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
tags:
|
|
6
|
-
- 'v*'
|
|
7
|
-
|
|
8
|
-
permissions:
|
|
9
|
-
id-token: write # Required for OIDC trusted publishing
|
|
10
|
-
contents: read
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
publish:
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
permissions:
|
|
16
|
-
contents: read
|
|
17
|
-
id-token: write
|
|
18
|
-
|
|
19
|
-
steps:
|
|
20
|
-
- name: Checkout
|
|
21
|
-
uses: actions/checkout@v4
|
|
22
|
-
|
|
23
|
-
- name: Setup Node
|
|
24
|
-
uses: actions/setup-node@v4
|
|
25
|
-
with:
|
|
26
|
-
node-version: '22'
|
|
27
|
-
|
|
28
|
-
- name: Install dependencies
|
|
29
|
-
run: bun install
|
|
30
|
-
|
|
31
|
-
- name: Publish to npm
|
|
32
|
-
run: npm publish --access public
|