create-skybridge 0.0.0-dev.6c90417 → 0.0.0-dev.6c97171

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 (39) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.js +169 -33
  3. package/dist/index.test.js +13 -1
  4. package/package.json +13 -14
  5. package/template/.dockerignore +4 -0
  6. package/template/AGENTS.md +1 -0
  7. package/template/Dockerfile +53 -0
  8. package/template/README.md +52 -24
  9. package/template/_gitignore +3 -1
  10. package/template/alpic.json +1 -2
  11. package/template/node_modules/.bin/alpic +21 -0
  12. package/template/node_modules/.bin/sb +21 -0
  13. package/template/node_modules/.bin/skybridge +21 -0
  14. package/template/node_modules/.bin/tsc +21 -0
  15. package/template/node_modules/.bin/tsserver +21 -0
  16. package/template/node_modules/.bin/tsx +21 -0
  17. package/template/node_modules/.bin/vite +21 -0
  18. package/template/package.json +24 -10
  19. package/template/src/components/ball.tsx +22 -0
  20. package/template/src/helpers.ts +4 -0
  21. package/template/src/index.css +152 -0
  22. package/template/{server/src → src}/server.ts +13 -13
  23. package/template/src/views/magic-8-ball.tsx +10 -0
  24. package/template/src/vite-manifest.d.ts +4 -0
  25. package/template/tsconfig.json +11 -0
  26. package/template/{web/vite.config.ts → vite.config.ts} +1 -3
  27. package/template/pnpm-workspace.yaml +0 -7
  28. package/template/server/nodemon.json +0 -5
  29. package/template/server/package.json +0 -32
  30. package/template/server/src/index.ts +0 -35
  31. package/template/server/src/middleware.ts +0 -54
  32. package/template/server/tsconfig.json +0 -17
  33. package/template/web/package.json +0 -24
  34. package/template/web/src/helpers.ts +0 -4
  35. package/template/web/src/index.css +0 -30
  36. package/template/web/src/widgets/magic-8-ball.tsx +0 -22
  37. package/template/web/tsconfig.app.json +0 -34
  38. package/template/web/tsconfig.json +0 -13
  39. package/template/web/tsconfig.node.json +0 -26
@@ -1,34 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4
- "target": "ES2022",
5
- "useDefineForClassFields": true,
6
- "lib": ["ES2022", "DOM", "DOM.Iterable"],
7
- "module": "ESNext",
8
- "types": ["vite/client"],
9
- "skipLibCheck": true,
10
-
11
- /* Bundler mode */
12
- "moduleResolution": "bundler",
13
- "allowImportingTsExtensions": true,
14
- "verbatimModuleSyntax": true,
15
- "moduleDetection": "force",
16
- "noEmit": true,
17
- "jsx": "react-jsx",
18
-
19
- /* Linting */
20
- "strict": true,
21
- "noUnusedLocals": true,
22
- "noUnusedParameters": true,
23
- "erasableSyntaxOnly": true,
24
- "noFallthroughCasesInSwitch": true,
25
- "noUncheckedSideEffectImports": true,
26
-
27
- /* Shadcn Config */
28
- "baseUrl": ".",
29
- "paths": {
30
- "@/*": ["./src/*"]
31
- }
32
- },
33
- "include": ["src"]
34
- }
@@ -1,13 +0,0 @@
1
- {
2
- "files": [],
3
- "references": [
4
- { "path": "./tsconfig.app.json" },
5
- { "path": "./tsconfig.node.json" }
6
- ],
7
- "compilerOptions": {
8
- "baseUrl": ".",
9
- "paths": {
10
- "@/*": ["./src/*"]
11
- }
12
- }
13
- }
@@ -1,26 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
- "target": "ES2023",
5
- "lib": ["ES2023"],
6
- "module": "ESNext",
7
- "types": ["node"],
8
- "skipLibCheck": true,
9
-
10
- /* Bundler mode */
11
- "moduleResolution": "bundler",
12
- "allowImportingTsExtensions": true,
13
- "verbatimModuleSyntax": true,
14
- "moduleDetection": "force",
15
- "noEmit": true,
16
-
17
- /* Linting */
18
- "strict": true,
19
- "noUnusedLocals": true,
20
- "noUnusedParameters": true,
21
- "erasableSyntaxOnly": true,
22
- "noFallthroughCasesInSwitch": true,
23
- "noUncheckedSideEffectImports": true
24
- },
25
- "include": ["vite.config.ts"]
26
- }