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

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

75 lines
1.7 KiB
JSON
Raw Normal View History

2024-01-08 09:22:40 -05:00
{
"name": "@astrojs/db",
2024-01-29 11:57:59 -05:00
"version": "0.1.16",
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 13:01:10 -05:00
"import": "./dist/index.js"
2024-01-08 09:22:40 -05:00
},
"./components": "./components/index.ts",
"./internal": {
2024-01-08 13:01:10 -05:00
"types": "./dist/internal.d.ts",
"import": "./dist/internal.js"
2024-01-08 09:22:40 -05:00
},
2024-01-08 18:00:15 -05:00
"./internal-drizzle": {
"types": "./dist/internal-drizzle.d.ts",
"import": "./dist/internal-drizzle.js"
2024-01-24 00:16:33 -05: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
],
"internal": [
"./dist/internal.d.ts"
]
}
},
"files": [
"index.d.ts",
"config-augment.d.ts",
2024-01-08 09:22:40 -05:00
"dist",
"components"
],
"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:match": "mocha --timeout 20000 -g"
2024-01-08 09:22:40 -05:00
},
"dependencies": {
2024-01-27 01:30:05 -05:00
"@libsql/client": "0.4.0-pre.10",
2024-01-19 00:42:11 -05: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-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-01-22 15:24:17 -05:00
"@types/deep-diff": "^1.0.5",
"@types/diff": "^5.0.8",
"@types/yargs-parser": "^21.0.3",
2024-01-08 09:22:40 -05:00
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
2024-01-12 15:47:17 -05:00
"@types/prompts": "^2.4.8",
2024-01-19 00:42:11 -05:00
"astro": "workspace:*",
2024-01-08 17:03:03 -05: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"
}
}