summaryrefslogtreecommitdiff
path: root/packages/integrations/alpinejs/package.json
blob: 4ac5ae595ec4be19fee9871bef4c486999243318 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "name": "@astrojs/alpinejs",
  "description": "Use Alpine within Astro",
  "version": "0.4.4",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/withastro/astro.git",
    "directory": "packages/integrations/alpinejs"
  },
  "keywords": [
    "astro-integration",
    "astro-component",
    "renderer",
    "alpinejs",
    "performance"
  ],
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://docs.astro.build/en/guides/integrations-guide/alpinejs",
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "astro-scripts build \"src/**/*.ts\" && tsc",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "dev": "astro-scripts dev \"src/**/*.ts\"",
    "test:e2e": "playwright test"
  },
  "peerDependencies": {
    "@types/alpinejs": "^3.0.0",
    "alpinejs": "^3.0.0"
  },
  "devDependencies": {
    "@playwright/test": "1.51.1",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "vite": "^6.2.4"
  },
  "publishConfig": {
    "provenance": true
  }
}