summaryrefslogtreecommitdiff
path: root/packages/integrations/svelte/package.json
blob: 7668959fb6fb47fd20cd69a2f5eb208cf0c6d9a0 (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/svelte",
  "version": "0.0.2",
  "description": "Use Svelte components within Astro",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/astro.git",
    "directory": "packages/integrations/svelte"
  },
  "keywords": [
    "astro-component",
    "renderer",
    "svelte"
  ],
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://astro.build",
  "exports": {
    ".": "./dist/index.js",
    "./*": "./*",
    "./client.js": "./client.js",
    "./server.js": "./server.js",
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "astro-scripts build \"src/**/*.ts\" && tsc",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "dev": "astro-scripts dev \"src/**/*.ts\""
  },
  "dependencies": {
    "@sveltejs/vite-plugin-svelte": "^1.0.0-next.41",
    "postcss-load-config": "^3.1.4",
    "svelte-preprocess": "^4.10.5"
  },
  "devDependencies": {
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "svelte": "^3.47.0"
  },
  "peerDependencies": {
    "svelte": "^3.46.4"
  },
  "engines": {
    "node": "^14.15.0 || >=16.0.0"
  }
}