script package

This commit is contained in:
Frank
2025-09-03 13:43:30 -04:00
parent 1e4f5710aa
commit 3f9b569575
5 changed files with 53 additions and 7 deletions

1
cloud/scripts/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
src/scrap.ts

View File

@@ -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:"
}
}

View File

@@ -0,0 +1 @@
// placeholder

View File

@@ -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"]
}
}