luvabase 0.0.4

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.
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "luva-example-minimal",
3
+ "private": true,
4
+ "scripts": {
5
+ "build:luva": "rm -rf dist && npm run wrangler-dry-build && cp luva.jsonc dist/ && cp -r public dist/public && npm run make-app",
6
+ "wrangler-dry-build": "wrangler deploy --dry-run --bundle --outdir dist",
7
+ "make-app": "cd dist && zip -r ./app.luva . && mv ./app.luva ../ && cd .. && rm -rf dist"
8
+ },
9
+ "devDependencies": {
10
+ "wrangler": "^4.14.4"
11
+ }
12
+ }
Binary file
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "example-bare",
3
+ "compatibility_date": "2026-01-16",
4
+ "compatibility_flags": ["nodejs_compat"],
5
+ "main": "index.js",
6
+ }
Binary file
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "Snake",
3
+ "subtitle": "Play the classic of classics",
4
+ "icon": "icon.png",
5
+ "services": [
6
+ {
7
+ "binding": "MAINDB",
8
+ "type": "cloudflare-kv",
9
+ },
10
+ ],
11
+ }