0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-20 22:12:38 -05:00
astro/packages/db/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
2 KiB
JSON
Raw Normal View History

2024-01-08 09:22:40 -05:00
{
"name": "@astrojs/db",
2024-02-01 11:50:47 -05:00
"version": "0.2.2",
2024-01-08 09:22:40 -05:00
"description": "",
2024-01-08 10:03:40 -05:00
"license": "MIT",
2024-01-08 09:22:40 -05:00
"type": "module",
"types": "./index.d.ts",
2024-01-08 10:03:40 -05:00
"author": "withastro",
2024-01-22 18:12:41 -05:00
"main": "./dist/index.js",
2024-01-08 09:22:40 -05:00
"exports": {
".": {
"types": "./index.d.ts",
2024-01-08 12:01:10 -06:00
"import": "./dist/index.js"
2024-01-08 09:22:40 -05:00
},
"./components": "./components/index.ts",
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
2024-01-08 09:22:40 -05:00
},
"./runtime/drizzle": {
"types": "./dist/runtime/drizzle.d.ts",
"import": "./dist/runtime/drizzle.js"
2024-01-23 21:16:33 -08:00
},
"./package.json": "./package.json"
2024-01-08 09:22:40 -05:00
},
"typesVersions": {
"*": {
".": [
"./index.d.ts"
2024-01-08 09:22:40 -05:00
],
"runtime": [
"./dist/runtime/index.d.ts"
],
"runtime/drizzle": [
"./dist/runtime/drizzle.d.ts"
2024-01-08 09:22:40 -05:00
]
}
},
"files": [
"index.d.ts",
"config-augment.d.ts",
2024-01-08 09:22:40 -05:00
"dist",
"components"
],
2024-02-01 10:48:45 -06:00
"keywords": [
"withastro",
"astro-integration"
],
2024-01-08 09:22:40 -05:00
"scripts": {
2024-01-08 18:00:15 -05:00
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"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"
2024-01-08 09:22:40 -05:00
},
"dependencies": {
2024-01-31 10:48:54 -05:00
"@libsql/client": "^0.4.3",
2024-01-18 21:42:11 -08:00
"deep-diff": "^1.0.2",
2024-01-08 09:22:40 -05:00
"drizzle-orm": "^0.28.6",
"kleur": "^4.1.5",
"nanoid": "^5.0.1",
2024-02-06 13:21:56 -08:00
"open": "^10.0.3",
"ora": "^7.0.1",
2024-01-12 15:47:17 -05:00
"prompts": "^2.4.2",
"yargs-parser": "^21.1.1",
2024-01-08 09:22:40 -05:00
"zod": "^3.22.4"
},
"devDependencies": {
2024-02-06 13:21:56 -08:00
"@types/chai": "^4.3.6",
2024-01-22 15:24:17 -05:00
"@types/deep-diff": "^1.0.5",
"@types/diff": "^5.0.8",
2024-01-08 09:22:40 -05:00
"@types/mocha": "^10.0.2",
2024-01-12 15:47:17 -05:00
"@types/prompts": "^2.4.8",
2024-02-06 13:21:56 -08:00
"@types/yargs-parser": "^21.0.3",
2024-01-18 21:42:11 -08:00
"astro": "workspace:*",
2024-01-08 16:03:03 -06:00
"astro-scripts": "workspace:*",
2024-01-08 09:22:40 -05:00
"chai": "^4.3.10",
2024-01-08 18:00:15 -05:00
"cheerio": "1.0.0-rc.12",
2024-01-08 09:22:40 -05:00
"mocha": "^10.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.11"
}
}