mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"name": "@astrojs/db",
|
|
"version": "0.1.3",
|
|
"description": "",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"types": "./index.d.ts",
|
|
"author": "withastro",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./components": "./components/index.ts",
|
|
"./internal": {
|
|
"types": "./dist/internal.d.ts",
|
|
"import": "./dist/internal.js"
|
|
},
|
|
"./internal-drizzle": {
|
|
"types": "./dist/internal-drizzle.d.ts",
|
|
"import": "./dist/internal-drizzle.js"
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"./index.d.ts"
|
|
],
|
|
"internal": [
|
|
"./dist/internal.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"dist",
|
|
"components"
|
|
],
|
|
"scripts": {
|
|
"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:match": "mocha --timeout 20000 -g"
|
|
},
|
|
"dependencies": {
|
|
"@libsql/client": "0.4.0-pre.5",
|
|
"deep-diff": "^1.0.2",
|
|
"drizzle-orm": "^0.28.6",
|
|
"kleur": "^4.1.5",
|
|
"nanoid": "^5.0.1",
|
|
"prompts": "^2.4.2",
|
|
"yargs-parser": "^21.1.1",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/deep-diff": "^1.0.5",
|
|
"@types/diff": "^5.0.8",
|
|
"@types/yargs-parser": "^21.0.3",
|
|
"@types/chai": "^4.3.6",
|
|
"@types/mocha": "^10.0.2",
|
|
"@types/prompts": "^2.4.8",
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*",
|
|
"chai": "^4.3.10",
|
|
"cheerio": "1.0.0-rc.12",
|
|
"mocha": "^10.2.0",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^4.4.11"
|
|
}
|
|
}
|