create-outsystems-astro 0.9.0 → 0.11.0

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 (62) hide show
  1. package/bin/cli.js +42 -1
  2. package/integrations/.prettierignore +15 -0
  3. package/integrations/.yarn/releases/yarn-4.15.0.cjs +940 -0
  4. package/integrations/.yarnrc.yml +6 -0
  5. package/integrations/bun.lock +1250 -0
  6. package/integrations/bunfig.toml +3 -0
  7. package/integrations/deno.json +4 -0
  8. package/integrations/deno.lock +3943 -0
  9. package/integrations/eslint.config.mjs +61 -0
  10. package/integrations/html/client.ts +30 -0
  11. package/integrations/html/index.ts +57 -0
  12. package/integrations/html/server.ts +54 -0
  13. package/integrations/package-lock.json +8926 -0
  14. package/integrations/package.json +42 -0
  15. package/integrations/pnpm-lock.yaml +5562 -0
  16. package/integrations/pnpm-workspace.yaml +4 -0
  17. package/integrations/tsconfig.json +16 -0
  18. package/integrations/twig/client.ts +34 -0
  19. package/integrations/twig/index.ts +185 -0
  20. package/integrations/twig/server.ts +54 -0
  21. package/integrations/yarn.lock +6375 -0
  22. package/package.json +3 -1
  23. package/template/.github/workflows/deno-test.yml +1 -1
  24. package/template/.github/workflows/npm-test.yml +1 -1
  25. package/template/.github/workflows/pnpm-test.yml +2 -2
  26. package/template/.github/workflows/yarn-test.yml +26 -13
  27. package/template/.gitignore +4 -0
  28. package/template/.prettierignore +1 -0
  29. package/template/.yarn/releases/yarn-4.15.0.cjs +940 -0
  30. package/template/.yarnrc.yml +8 -0
  31. package/template/AGENTS.md +93 -1
  32. package/template/README.md +15 -0
  33. package/template/astro.config.mjs +8 -0
  34. package/template/bun.lock +281 -367
  35. package/template/bunfig.toml +3 -0
  36. package/template/deno.json +3 -11
  37. package/template/deno.lock +703 -676
  38. package/template/eslint.config.mjs +1 -0
  39. package/template/package-lock.json +705 -787
  40. package/template/package.json +38 -41
  41. package/template/pnpm-lock.yaml +1126 -1114
  42. package/template/pnpm-workspace.yaml +5 -0
  43. package/template/src/env.d.ts +6 -0
  44. package/template/src/framework/html/Demo.ts +105 -0
  45. package/template/src/framework/html/Store.ts +47 -0
  46. package/template/src/framework/twig/Demo.twig +100 -0
  47. package/template/src/framework/twig/Store.twig +45 -0
  48. package/template/src/images/html.png +0 -0
  49. package/template/src/images/twig.png +0 -0
  50. package/template/src/pages/html/html-demo.astro +61 -0
  51. package/template/src/pages/multi/store.astro +13 -1
  52. package/template/src/pages/twig/twig-demo.astro +65 -0
  53. package/template/src/stores/framework.ts +2 -0
  54. package/template/test/e2e/html/html-demo.spec.ts +36 -0
  55. package/template/test/e2e/twig/twig-demo.spec.ts +36 -0
  56. package/template/test/integration/html/Demo.test.ts +83 -0
  57. package/template/test/integration/twig/Demo.test.ts +84 -0
  58. package/template/tsconfig.json +1 -1
  59. package/template/vitest.config.ts +18 -0
  60. package/template/yarn.lock +14777 -10350
  61. /package/template/patches/{@analogjs+astro-angular+2.5.1.patch → @analogjs+astro-angular+2.5.2.patch} +0 -0
  62. /package/template/patches/{@angular+build+21.2.11.patch → @angular+build+21.2.12.patch} +0 -0
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "islands-integrations",
3
+ "version": "0.11.0",
4
+ "description": "Integrations for OutSystems Astro Islands",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "scripts": {
8
+ "audit:bun": "bun audit",
9
+ "audit:deno": "deno audit",
10
+ "audit:npm": "better-npm-audit audit",
11
+ "audit:pnpm": "pnpm audit",
12
+ "audit:yarn": "yarn npm audit",
13
+ "build": "tsc",
14
+ "format": "prettier . --check",
15
+ "format:write": "prettier --write .",
16
+ "lint": "eslint",
17
+ "lint:fix": "eslint --fix",
18
+ "prepublish": "tsc",
19
+ "process": "tsc && mv dist ../template/.integrations && cp package.json ../template/.integrations/package.json",
20
+ "typecheck": "tsc --noEmit"
21
+ },
22
+ "dependencies": {
23
+ "astro": "^6.3.7",
24
+ "twig": "^3.0.0"
25
+ },
26
+ "devDependencies": {
27
+ "@eslint/compat": "^2.1.0",
28
+ "@eslint/js": "^9.39.4",
29
+ "@types/node": "^25.9.1",
30
+ "@types/twig": "^1.12.17",
31
+ "better-npm-audit": "^3.11.0",
32
+ "eslint": "^9.39.4",
33
+ "eslint-config-prettier": "^10.1.8",
34
+ "eslint-plugin-astro": "^1.7.0",
35
+ "eslint-plugin-import": "^2.32.0",
36
+ "eslint-plugin-perfectionist": "^5.9.0",
37
+ "globals": "^17.6.0",
38
+ "prettier": "^3.8.3",
39
+ "typescript": "^5.9.3",
40
+ "typescript-eslint": "^8.59.4"
41
+ }
42
+ }