0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00
astro/examples/toolbar-app/package.json
2025-01-06 10:05:00 +00:00

21 lines
394 B
JSON

{
"name": "@example/toolbar-app",
"type": "module",
"version": "0.0.1",
"peerDependencies": {
"astro": "^4.6.1"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublish": "npm run build"
},
"exports": {
".": "./dist/integration.js",
"./app": "./dist/app.js"
},
"devDependencies": {
"@types/node": "^18.17.8",
"astro": "^5.1.2"
}
}