summaryrefslogtreecommitdiff
path: root/examples/toolbar-app/package.json
blob: 02cbdf8d55f247e99d847d9a57328b4463a0a9eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "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": {
    "astro": "^4.16.0"
  }
}