@tangle-network/tcloud 0.4.8 → 0.4.9

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 (2) hide show
  1. package/dist/cli.cjs +0 -0
  2. package/package.json +12 -13
package/dist/cli.cjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangle-network/tcloud",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "description": "TypeScript SDK and CLI for Tangle AI Cloud — decentralized LLM inference",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -68,21 +68,13 @@
68
68
  }
69
69
  }
70
70
  },
71
- "scripts": {
72
- "build": "tsup src/index.ts src/cli.ts src/shielded.ts src/instance.ts src/attestation.ts src/sandbox.ts --format esm,cjs --dts --clean --external socks-proxy-agent",
73
- "docs": "typedoc src/index.ts --out docs --name tcloud --readme README.md",
74
- "test": "vitest run",
75
- "test:e2e": "vitest run --config vitest.e2e.config.ts",
76
- "dev": "tsx src/cli.ts",
77
- "prepublishOnly": "npm run build"
78
- },
79
71
  "dependencies": {
80
72
  "@scure/bip32": "^2.2.0",
81
73
  "@scure/bip39": "^2.2.0",
82
74
  "@tangle-network/sandbox": "^0.1.2",
83
- "@tangle-network/tcloud-attestation": "workspace:^",
84
75
  "commander": "^14.0.3",
85
- "viem": "^2.48.4"
76
+ "viem": "^2.48.4",
77
+ "@tangle-network/tcloud-attestation": "^0.1.1"
86
78
  },
87
79
  "devDependencies": {
88
80
  "@types/node": "^22.0.0",
@@ -100,7 +92,7 @@
100
92
  "license": "Apache-2.0",
101
93
  "repository": {
102
94
  "type": "git",
103
- "url": "https://github.com/tangle-network/tcloud.git",
95
+ "url": "git+https://github.com/tangle-network/tcloud.git",
104
96
  "directory": "packages/tcloud"
105
97
  },
106
98
  "homepage": "https://docs.tangleai.cloud",
@@ -118,5 +110,12 @@
118
110
  ],
119
111
  "engines": {
120
112
  "node": ">=18"
113
+ },
114
+ "scripts": {
115
+ "build": "tsup src/index.ts src/cli.ts src/shielded.ts src/instance.ts src/attestation.ts src/sandbox.ts --format esm,cjs --dts --clean --external socks-proxy-agent",
116
+ "docs": "typedoc src/index.ts --out docs --name tcloud --readme README.md",
117
+ "test": "vitest run",
118
+ "test:e2e": "vitest run --config vitest.e2e.config.ts",
119
+ "dev": "tsx src/cli.ts"
121
120
  }
122
- }
121
+ }