mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
76 lines
1.9 KiB
JSON
76 lines
1.9 KiB
JSON
{
|
|
"name": "@astrojs/db",
|
|
"version": "0.1.3",
|
|
"description": "",
|
|
"type": "module",
|
|
"license": "UNLICENSED",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./components": "./components/index.ts",
|
|
"./internal": {
|
|
"import": "./dist/internal.js",
|
|
"types": "./dist/internal.d.ts"
|
|
},
|
|
"./internal-local": {
|
|
"import": "./dist/internal-local.js",
|
|
"types": "./dist/internal-local.d.ts"
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"./dist/index.d.ts"
|
|
],
|
|
"internal": [
|
|
"./dist/internal.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"components"
|
|
],
|
|
"scripts": {
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc --project tsconfig.build.json",
|
|
"typecheck": "tsc -b",
|
|
"prepack": "pnpm run build",
|
|
"dev": "pnpm /^dev:/",
|
|
"dev:build": "astro-scripts dev \"src/**/*.ts\"",
|
|
"dev:types": "tsc --project tsconfig.build.json --watch",
|
|
"test": "pnpm run build && mocha test/**/*.js",
|
|
"test:match": "mocha test/**/*.js -g"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/cli-kit": "^0.3.0",
|
|
"@astrojs/markdoc": "^0.5.2",
|
|
"@libsql/client": "0.4.0-pre.5",
|
|
"astro": "^3.6.0",
|
|
"better-sqlite3": "^8.7.0",
|
|
"circle-rhyme-yes-measure": "workspace:^",
|
|
"drizzle-orm": "^0.28.6",
|
|
"esbuild": "^0.19.4",
|
|
"github-slugger": "^2.0.0",
|
|
"kleur": "^4.1.5",
|
|
"miniflare": "^3.20231002.1",
|
|
"nanoid": "^5.0.1",
|
|
"open": "^9.1.0",
|
|
"ora": "^7.0.1",
|
|
"prompts": "^2.4.2",
|
|
"yargs-parser": "^21.1.1",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.6",
|
|
"@types/mocha": "^10.0.2",
|
|
"@types/prompts": "^2.4.5",
|
|
"@types/yargs-parser": "^21.0.1",
|
|
"chai": "^4.3.10",
|
|
"mocha": "^10.2.0",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^4.4.11"
|
|
}
|
|
}
|