diff options
| author | Frank <[email protected]> | 2025-09-03 13:43:30 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-03 13:43:32 -0400 |
| commit | 3f9b569575e29368348e38697d9d7c0e65f5462f (patch) | |
| tree | a5d112f39e9066b288ec0e9871cf2b43e9006a1c /cloud/scripts | |
| parent | 1e4f5710aaac7cfa071cc6ad83ceca6e09463623 (diff) | |
| download | opencode-3f9b569575e29368348e38697d9d7c0e65f5462f.tar.gz opencode-3f9b569575e29368348e38697d9d7c0e65f5462f.zip | |
script package
Diffstat (limited to 'cloud/scripts')
| -rw-r--r-- | cloud/scripts/.gitignore | 1 | ||||
| -rw-r--r-- | cloud/scripts/package.json | 19 | ||||
| -rw-r--r-- | cloud/scripts/src/placeholder.ts | 1 | ||||
| -rw-r--r-- | cloud/scripts/tsconfig.json | 9 |
4 files changed, 30 insertions, 0 deletions
diff --git a/cloud/scripts/.gitignore b/cloud/scripts/.gitignore new file mode 100644 index 000000000..18c5ea0f8 --- /dev/null +++ b/cloud/scripts/.gitignore @@ -0,0 +1 @@ +src/scrap.ts diff --git a/cloud/scripts/package.json b/cloud/scripts/package.json new file mode 100644 index 000000000..85896ea4e --- /dev/null +++ b/cloud/scripts/package.json @@ -0,0 +1,19 @@ +{ + "name": "@opencode/cloud-scripts", + "version": "0.6.4", + "$schema": "https://json.schemastore.org/package.json", + "private": true, + "type": "module", + "scripts": { + "start": "tsx", + "shell": "sst shell" + }, + "dependencies": { + "@opencode/cloud-core": "workspace:*", + "tsx": "4.20.5" + }, + "devDependencies": { + "@types/node": "catalog:", + "typescript": "catalog:" + } +} diff --git a/cloud/scripts/src/placeholder.ts b/cloud/scripts/src/placeholder.ts new file mode 100644 index 000000000..ff7bd09c0 --- /dev/null +++ b/cloud/scripts/src/placeholder.ts @@ -0,0 +1 @@ +// placeholder diff --git a/cloud/scripts/tsconfig.json b/cloud/scripts/tsconfig.json new file mode 100644 index 000000000..0faf16aab --- /dev/null +++ b/cloud/scripts/tsconfig.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "@tsconfig/node22/tsconfig.json", + "compilerOptions": { + "module": "ESNext", + "moduleResolution": "bundler", + "types": ["@cloudflare/workers-types", "node"] + } +} |
