diff options
Diffstat (limited to 'examples/toolbar-app/package.json')
-rw-r--r-- | examples/toolbar-app/package.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json new file mode 100644 index 000000000..56c232081 --- /dev/null +++ b/examples/toolbar-app/package.json @@ -0,0 +1,21 @@ +{ + "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.9.0" + } +} |