@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 CHANGED
@@ -10,7 +10,7 @@ bunx @citadelfoundation/box
10
10
 
11
11
  ## Status
12
12
 
13
- Coming soon. Join the waitlist at [hishowa.com](https://hishowa.com).
13
+ Coming soon. Learn more at [citadel.foundation](https://citadel.foundation).
14
14
 
15
15
  ## License
16
16
 
package/bin/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // @citadelfoundation/box - The sovereign runtime
3
+ // Status: Coming soon
4
+ console.log("Coming soon. Join the waitlist at https://hishowa.com");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citadelfoundation/box",
3
- "version": "0.0.1",
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
- "license": "TBD"
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