summaryrefslogtreecommitdiff
path: root/packages/db/package.json
blob: e58bf32b8f9bae4b7aa3e9c074e2ebe0f370f311 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
  "name": "@astrojs/db",
  "version": "0.10.3",
  "description": "",
  "license": "MIT",
  "type": "module",
  "author": "withastro",
  "types": "./index.d.ts",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "import": "./dist/index.js"
    },
    "./utils": {
      "types": "./dist/utils.d.ts",
      "import": "./dist/utils.js"
    },
    "./runtime": {
      "types": "./dist/runtime/index.d.ts",
      "import": "./dist/runtime/index.js"
    },
    "./dist/runtime/virtual.js": {
      "import": "./dist/runtime/virtual.js"
    },
    "./types": {
      "types": "./dist/core/types.d.ts",
      "import": "./dist/core/types.js"
    },
    "./package.json": "./package.json"
  },
  "typesVersions": {
    "*": {
      ".": [
        "./index.d.ts"
      ],
      "types": [
        "./dist/types.d.ts"
      ],
      "utils": [
        "./dist/utils.d.ts"
      ],
      "runtime": [
        "./dist/runtime/index.d.ts"
      ]
    }
  },
  "files": [
    "index.d.ts",
    "virtual.d.ts",
    "dist"
  ],
  "keywords": [
    "withastro",
    "astro-integration"
  ],
  "scripts": {
    "types:virtual": "tsc -p ./tsconfig.virtual.json",
    "build": "astro-scripts build \"src/**/*.ts\" && tsc && pnpm types:virtual",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "dev": "astro-scripts dev \"src/**/*.ts\"",
    "test": "mocha --exit --timeout 20000 \"test/*.js\" \"test/unit/**/*.js\"",
    "test:match": "mocha --timeout 20000 \"test/*.js\" \"test/unit/*.js\" -g"
  },
  "dependencies": {
    "@libsql/client": "^0.5.5",
    "async-listen": "^3.0.1",
    "deep-diff": "^1.0.2",
    "drizzle-orm": "^0.30.4",
    "github-slugger": "^2.0.0",
    "kleur": "^4.1.5",
    "nanoid": "^5.0.1",
    "open": "^10.0.3",
    "ora": "^7.0.1",
    "prompts": "^2.4.2",
    "strip-ansi": "^7.1.0",
    "yargs-parser": "^21.1.1",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/chai": "^4.3.6",
    "@types/deep-diff": "^1.0.5",
    "@types/diff": "^5.0.8",
    "@types/mocha": "^10.0.2",
    "@types/prompts": "^2.4.8",
    "@types/yargs-parser": "^21.0.3",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "chai": "^4.3.10",
    "cheerio": "1.0.0-rc.12",
    "mocha": "^10.2.0",
    "typescript": "^5.2.2",
    "vite": "^5.1.4"
  }
}