@botiverse/raft-computer 0.0.37

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.
Files changed (1) hide show
  1. package/package.json +38 -0
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@botiverse/raft-computer",
3
+ "version": "0.0.37",
4
+ "description": "Canonical Raft Computer package. Provides raft-computer plus the legacy slock-computer alias over the same control-plane core.",
5
+ "type": "module",
6
+ "bin": {
7
+ "raft-computer": "dist/raft-computer.js",
8
+ "slock-computer": "dist/slock-computer.js"
9
+ },
10
+ "exports": {
11
+ "./lib": {
12
+ "types": "./dist/lib/index.d.ts",
13
+ "default": "./dist/lib/index.js"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/botiverse/slock.git",
23
+ "directory": "packages/raft-computer"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "scripts": {
29
+ "build": "pnpm --filter @slock-ai/computer build && node scripts/sync-computer-dist.mjs",
30
+ "lint:publish-package": "node scripts/check-publish-package.mjs"
31
+ },
32
+ "dependencies": {
33
+ "@botiverse/raft-daemon": "workspace:*",
34
+ "commander": "^12.1.0",
35
+ "proper-lockfile": "^4.1.2",
36
+ "undici": "^7.24.7"
37
+ }
38
+ }