astro/examples/with-vitest/package.json

19 lines
343 B
JSON
Raw Normal View History

{
"name": "@example/with-vitest",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
2022-08-06 04:36:23 +00:00
"astro": "astro",
"test": "vitest"
},
"dependencies": {
"astro": "^3.2.1",
2023-08-24 08:34:33 +00:00
"vitest": "^0.34.2"
}
}