mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
12a1bccc81
* feat: container APIs * chore: handle runtime mode * chore: render slots * more prototyping * Adding a changeset * fix some weirdness around types * feat: allow to inject the manifest * feat: accept a manifest * more APIs * add `route` to the options * chore * fix component instance * chore: document stuff * remove commented code * chore: add test for renderers and fixed its types * fix: update name of the example * fix regression inside tests * use `experimental_` * remove errors * need to understand the types here * remove some options that I don't deem necessary for this phase * remove superfluous comments * chore: remove useless `@ts-ignore` directive * chore: address feedback * fix regression and remove astro config * chore: fix regression * Apply suggestions from code review Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * ooops * restore changes --------- Co-authored-by: Matthew Phillips <matthew@skypack.dev> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
25 lines
550 B
JSON
25 lines
550 B
JSON
{
|
|
"name": "@example/container-with-vitest",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"astro": "experimental--container",
|
|
"@astrojs/react": "^3.3.4",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"vitest": "^1.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/react": "^18.3.2"
|
|
}
|
|
}
|