opencode-cloud 0.1.0 → 0.1.1
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/package.json +4 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-cloud",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI for managing opencode as a persistent cloud service",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,15 +38,14 @@
|
|
|
38
38
|
"arm64"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@opencode-cloud/core": "0.1.
|
|
41
|
+
"@opencode-cloud/core": "0.1.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typescript": "^5.7.3",
|
|
45
45
|
"@types/node": "^22.10.7"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
|
-
"build": "tsc",
|
|
49
|
-
"start": "node dist/index.js"
|
|
50
|
-
"postinstall": "npm run build"
|
|
48
|
+
"build": "tsc || (echo \"Error: TypeScript compiler (tsc) not found. Install dev dependencies or run npm i -D typescript before building.\" && exit 1)",
|
|
49
|
+
"start": "node dist/index.js"
|
|
51
50
|
}
|
|
52
51
|
}
|