@vibe2founder/tests2dialects 0.1.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 (74) hide show
  1. package/CHANGELOG.md +73 -0
  2. package/bun.lock +22 -0
  3. package/bunfig.toml +2 -0
  4. package/critica.md +77 -0
  5. package/docs/4-ideias.md +66 -0
  6. package/docs/api-api.md +93 -0
  7. package/docs/api-imperativo.md +125 -0
  8. package/docs/api-matematico.md +145 -0
  9. package/docs/api-narrativo.md +181 -0
  10. package/docs/guia-rapido.md +189 -0
  11. package/docs/whitepaper.md +21 -0
  12. package/examples/imperative.spec.ts +58 -0
  13. package/examples/math.spec.ts +52 -0
  14. package/examples/narrative.spec.ts +61 -0
  15. package/examples/polyglot-shopping-cart.spec.ts +212 -0
  16. package/examples/sanity.spec.ts +54 -0
  17. package/examples/showcase-api.spec.ts +70 -0
  18. package/examples/test-api.ts +36 -0
  19. package/infograficos/detalhado.png +0 -0
  20. package/infograficos/mobile.png +0 -0
  21. package/infograficos/normal.png +0 -0
  22. package/landing-page/README.md +38 -0
  23. package/landing-page/bun.lock +609 -0
  24. package/landing-page/eslint.config.js +23 -0
  25. package/landing-page/index.html +17 -0
  26. package/landing-page/package-lock.json +2962 -0
  27. package/landing-page/package.json +34 -0
  28. package/landing-page/postcss.config.js +6 -0
  29. package/landing-page/public/vite.svg +1 -0
  30. package/landing-page/src/App.tsx +358 -0
  31. package/landing-page/src/assets/react.svg +1 -0
  32. package/landing-page/src/index.css +34 -0
  33. package/landing-page/src/main.tsx +10 -0
  34. package/landing-page/tailwind.config.js +59 -0
  35. package/landing-page/tsconfig.app.json +28 -0
  36. package/landing-page/tsconfig.json +7 -0
  37. package/landing-page/tsconfig.node.json +26 -0
  38. package/landing-page/vite.config.ts +7 -0
  39. package/logo.png +0 -0
  40. package/output.log +60 -0
  41. package/package.json +36 -0
  42. package/packages/api-test-dialect/README.md +30 -0
  43. package/packages/api-test-dialect/index.ts +132 -0
  44. package/packages/api-test-dialect/openapi.json +64 -0
  45. package/packages/reqify/README.md +33 -0
  46. package/packages/reqify/index.ts +48 -0
  47. package/podcast/O_Matem/303/241tico,_o_Narrador_e_o_Engenheiro.json +0 -0
  48. package/podcast/O_Matem/303/241tico,_o_Narrador_e_o_Engenheiro.md +0 -0
  49. package/podcast/critica-Dialetos_de_teste__inova/303/247/303/243o_ou_fragmenta/303/247/303/243o_.json +0 -0
  50. package/podcast/critica-Dialetos_de_teste__inova/303/247/303/243o_ou_fragmenta/303/247/303/243o_.md +0 -0
  51. package/podcast/critica-Unificar_filosofia_e_pr/303/241tica_na_documenta/303/247/303/243o_(7_words__covers_t.md +1 -0
  52. package/podcast/critica-Unificar_filosofia_e_pr/303/241tica_na_documenta/303/247/303/243o__7_words__covers_t.ogg +0 -0
  53. package/podcast/critica2-Sil/303/252ncio_estrat/303/251gico_e_sobrecarga_em_READMEs.ogg +0 -0
  54. package/podcast/critica2.json +3191 -0
  55. package/podcast/critica2.md +1 -0
  56. package/podcast/debate-Dialetos_de_teste__inova/303/247/303/243o_ou_fragmenta/303/247/303/243o_.json +0 -0
  57. package/podcast/debate-Dialetos_de_teste__inova/303/247/303/243o_ou_fragmenta/303/247/303/243o_.md +0 -0
  58. package/readme.md +58 -0
  59. package/reports/01-01-2026_00-45.md +40 -0
  60. package/reports/01-01-2026_02-30.md +37 -0
  61. package/reports/03-02-2026_10-55.md +8 -0
  62. package/reports/03-02-2026_11-45.md +13 -0
  63. package/reports/03-02-2026_11-50.md +10 -0
  64. package/reports/26-01-2026_16-25.md +31 -0
  65. package/reports/26-01-2026_19-20.md +27 -0
  66. package/reports/31-12-2025_22-35.md +25 -0
  67. package/reports/31-12-2025_22-45.md +15 -0
  68. package/slides/Dialetos_de_Teste_Um_Executor_M/303/272ltiplos_Vocabul/303/241rios.pdf +0 -0
  69. package/src/cli.ts +445 -0
  70. package/src/index.ts +539 -0
  71. package/tabela.html +350 -0
  72. package/tsconfig.json +22 -0
  73. package/types/api-types.ts +11 -0
  74. package/www/index.html +1344 -0
@@ -0,0 +1,23 @@
1
+ import js from '@eslint/js'
2
+ import globals from 'globals'
3
+ import reactHooks from 'eslint-plugin-react-hooks'
4
+ import reactRefresh from 'eslint-plugin-react-refresh'
5
+ import tseslint from 'typescript-eslint'
6
+ import { defineConfig, globalIgnores } from 'eslint/config'
7
+
8
+ export default defineConfig([
9
+ globalIgnores(['dist']),
10
+ {
11
+ files: ['**/*.{ts,tsx}'],
12
+ extends: [
13
+ js.configs.recommended,
14
+ tseslint.configs.recommended,
15
+ reactHooks.configs.flat.recommended,
16
+ reactRefresh.configs.vite,
17
+ ],
18
+ languageOptions: {
19
+ ecmaVersion: 2020,
20
+ globals: globals.browser,
21
+ },
22
+ },
23
+ ])
@@ -0,0 +1,17 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>One Proof 4 All | Polyglot Testing Framework</title>
8
+ <link rel="preconnect" href="https://fonts.googleapis.com">
9
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
+ <link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet">
11
+ <meta name="description" content="One Proof 4 All - The Polyglot Testing Framework that decouples execution from semantics. Mathematical, Narrative, and Imperative dialects for your tests.">
12
+ </head>
13
+ <body>
14
+ <div id="root"></div>
15
+ <script type="module" src="/src/main.tsx"></script>
16
+ </body>
17
+ </html>