aboutsummaryrefslogtreecommitdiff
path: root/examples/toolbar-app/package.json
blob: c34863aae38425f69c6a3cf98631f8b703715c00 (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.11.6"
  }
}