@hugomrdias/foxer 0.0.1 → 0.0.2

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 (56) hide show
  1. package/package.json +1 -1
  2. package/src/bin/index.ts +1 -1
  3. package/hello/apps/foc-api/README.md +0 -69
  4. package/hello/apps/foc-api/biome.json +0 -8
  5. package/hello/apps/foc-api/index.html +0 -13
  6. package/hello/apps/foc-api/package.json +0 -39
  7. package/hello/apps/foc-api/public/vite.svg +0 -1
  8. package/hello/apps/foc-api/src/app.css +0 -45
  9. package/hello/apps/foc-api/src/app.tsx +0 -43
  10. package/hello/apps/foc-api/src/assets/Cloudflare_Logo.svg +0 -51
  11. package/hello/apps/foc-api/src/assets/react.svg +0 -1
  12. package/hello/apps/foc-api/src/client.ts +0 -41
  13. package/hello/apps/foc-api/src/components/account.tsx +0 -100
  14. package/hello/apps/foc-api/src/components/wallet-options.tsx +0 -43
  15. package/hello/apps/foc-api/src/index.css +0 -68
  16. package/hello/apps/foc-api/src/main.tsx +0 -38
  17. package/hello/apps/foc-api/src/vite-env.d.ts +0 -1
  18. package/hello/apps/foc-api/tsconfig.app.json +0 -44
  19. package/hello/apps/foc-api/tsconfig.json +0 -17
  20. package/hello/apps/foc-api/tsconfig.node.json +0 -25
  21. package/hello/apps/foc-api/tsconfig.worker.json +0 -8
  22. package/hello/apps/foc-api/vite.config.ts +0 -8
  23. package/hello/apps/foc-api/worker/capabilities.ts +0 -25
  24. package/hello/apps/foc-api/worker/index.ts +0 -64
  25. package/hello/apps/foc-api/worker/router.ts +0 -35
  26. package/hello/apps/foc-api/worker-configuration.d.ts +0 -7357
  27. package/hello/apps/foc-api/wrangler.jsonc +0 -50
  28. package/hello/apps/foc-app/README.md +0 -69
  29. package/hello/apps/foc-app/biome.json +0 -8
  30. package/hello/apps/foc-app/index.html +0 -13
  31. package/hello/apps/foc-app/package.json +0 -39
  32. package/hello/apps/foc-app/public/vite.svg +0 -1
  33. package/hello/apps/foc-app/src/app.css +0 -45
  34. package/hello/apps/foc-app/src/app.tsx +0 -43
  35. package/hello/apps/foc-app/src/assets/Cloudflare_Logo.svg +0 -51
  36. package/hello/apps/foc-app/src/assets/react.svg +0 -1
  37. package/hello/apps/foc-app/src/client.ts +0 -41
  38. package/hello/apps/foc-app/src/components/account.tsx +0 -100
  39. package/hello/apps/foc-app/src/components/wallet-options.tsx +0 -43
  40. package/hello/apps/foc-app/src/index.css +0 -68
  41. package/hello/apps/foc-app/src/main.tsx +0 -38
  42. package/hello/apps/foc-app/src/vite-env.d.ts +0 -1
  43. package/hello/apps/foc-app/tsconfig.app.json +0 -44
  44. package/hello/apps/foc-app/tsconfig.json +0 -17
  45. package/hello/apps/foc-app/tsconfig.node.json +0 -25
  46. package/hello/apps/foc-app/tsconfig.worker.json +0 -8
  47. package/hello/apps/foc-app/vite.config.ts +0 -8
  48. package/hello/apps/foc-app/worker/capabilities.ts +0 -25
  49. package/hello/apps/foc-app/worker/index.ts +0 -64
  50. package/hello/apps/foc-app/worker/router.ts +0 -35
  51. package/hello/apps/foc-app/worker-configuration.d.ts +0 -7357
  52. package/hello/apps/foc-app/wrangler.jsonc +0 -50
  53. package/hello/biome.json +0 -50
  54. package/hello/package.json +0 -22
  55. package/hello/pnpm-workspace.yaml +0 -3
  56. package/hello/tsconfig.json +0 -37
@@ -1,50 +0,0 @@
1
- /**
2
- * For more details on how to configure Wrangler, refer to:
3
- * https://developers.cloudflare.com/workers/wrangler/configuration/
4
- */
5
- {
6
- "$schema": "node_modules/wrangler/config-schema.json",
7
- "name": "ucan-store",
8
- "main": "worker/index.ts",
9
- "compatibility_date": "2025-07-19",
10
- "assets": {
11
- "not_found_handling": "single-page-application"
12
- },
13
- "observability": {
14
- "enabled": true
15
- }
16
- /**
17
- * Smart Placement
18
- * Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
19
- */
20
- // "placement": { "mode": "smart" },
21
-
22
- /**
23
- * Bindings
24
- * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
25
- * databases, object storage, AI inference, real-time communication and more.
26
- * https://developers.cloudflare.com/workers/runtime-apis/bindings/
27
- */
28
-
29
- /**
30
- * Environment Variables
31
- * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
32
- */
33
- // "vars": { "MY_VARIABLE": "production_value" },
34
- /**
35
- * Note: Use secrets to store sensitive data.
36
- * https://developers.cloudflare.com/workers/configuration/secrets/
37
- */
38
-
39
- /**
40
- * Static Assets
41
- * https://developers.cloudflare.com/workers/static-assets/binding/
42
- */
43
- // "assets": { "directory": "./public/", "binding": "ASSETS" },
44
-
45
- /**
46
- * Service Bindings (communicate between multiple Workers)
47
- * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
48
- */
49
- // "services": [{ "binding": "MY_SERVICE", "service": "my-service" }]
50
- }
package/hello/biome.json DELETED
@@ -1,50 +0,0 @@
1
- {
2
- "$schema": "https://biomejs.dev/schemas/latest/schema.json",
3
- "vcs": {
4
- "enabled": false,
5
- "clientKind": "git",
6
- "useIgnoreFile": false
7
- },
8
- "files": {
9
- "ignoreUnknown": false
10
- },
11
- "formatter": {
12
- "enabled": true,
13
- "formatWithErrors": true,
14
- "indentStyle": "space",
15
- "indentWidth": 2,
16
- "lineEnding": "lf",
17
- "lineWidth": 80,
18
- "attributePosition": "auto",
19
- "includes": ["**"]
20
- },
21
- "linter": {
22
- "enabled": true,
23
- "rules": {
24
- "recommended": true
25
- }
26
- },
27
- "javascript": {
28
- "formatter": {
29
- "jsxQuoteStyle": "double",
30
- "quoteProperties": "asNeeded",
31
- "trailingCommas": "es5",
32
- "semicolons": "asNeeded",
33
- "arrowParentheses": "always",
34
- "bracketSpacing": true,
35
- "bracketSameLine": false,
36
- "quoteStyle": "single",
37
- "attributePosition": "auto"
38
- },
39
- "globals": ["document", "navigator", "window"]
40
- },
41
- "assist": {
42
- "enabled": true,
43
- "actions": {
44
- "source": {
45
- "organizeImports": "on",
46
- "useSortedAttributes": "on"
47
- }
48
- }
49
- }
50
- }
@@ -1,22 +0,0 @@
1
- {
2
- "name": "hello",
3
- "version": "0.0.0",
4
- "description": "",
5
- "main": "index.js",
6
- "private": true,
7
- "workspaces": [
8
- "apps/*",
9
- "packages/*"
10
- ],
11
- "scripts": {
12
- "test": "echo \"Error: no test specified\" && exit 1",
13
- "lint": "pnpm -r --if-present run lint",
14
- "build": "pnpm -r --if-present run build",
15
- "lint:fix": "biome check --write ."
16
- },
17
- "keywords": [],
18
- "license": "MIT",
19
- "devDependencies": {
20
- "@biomejs/biome": "^2.4.5"
21
- }
22
- }
@@ -1,3 +0,0 @@
1
- packages:
2
- - 'apps/*'
3
- - 'packages/*'
@@ -1,37 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- /* Projects */
4
- "incremental": true,
5
- "composite": true,
6
- // Emit
7
-
8
- "declaration": true,
9
- "declarationMap": true,
10
- "sourceMap": true,
11
- "removeComments": true,
12
-
13
- // Language and Environment
14
- "lib": ["ESNext", "DOM"],
15
- "target": "ESNext",
16
- "moduleDetection": "force",
17
-
18
- // Modules
19
- "module": "NodeNext",
20
- "moduleResolution": "NodeNext",
21
- "resolveJsonModule": true,
22
- "rewriteRelativeImportExtensions": true,
23
-
24
- // Interop Constraints
25
- "isolatedModules": true,
26
- "verbatimModuleSyntax": true,
27
- "erasableSyntaxOnly": true,
28
- "esModuleInterop": true,
29
-
30
- // Type Checking
31
- "strict": true,
32
- "noImplicitOverride": true,
33
-
34
- // Completeness
35
- "skipLibCheck": true
36
- }
37
- }