mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
9a231a4dd7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
103 lines
2.6 KiB
JSON
103 lines
2.6 KiB
JSON
{
|
|
"name": "@astrojs/db",
|
|
"version": "0.10.7",
|
|
"description": "Add libSQL and Astro Studio support to your Astro site",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/withastro/astro.git",
|
|
"directory": "packages/db"
|
|
},
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/db/",
|
|
"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.6.0",
|
|
"async-listen": "^3.0.1",
|
|
"ci-info": "^4.0.0",
|
|
"deep-diff": "^1.0.2",
|
|
"drizzle-orm": "^0.30.9",
|
|
"github-slugger": "^2.0.0",
|
|
"kleur": "^4.1.5",
|
|
"nanoid": "^5.0.7",
|
|
"open": "^10.1.0",
|
|
"ora": "^8.0.1",
|
|
"prompts": "^2.4.2",
|
|
"strip-ansi": "^7.1.0",
|
|
"yargs-parser": "^21.1.1",
|
|
"zod": "^3.23.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.14",
|
|
"@types/deep-diff": "^1.0.5",
|
|
"@types/diff": "^5.2.0",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/prompts": "^2.4.9",
|
|
"@types/yargs-parser": "^21.0.3",
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*",
|
|
"chai": "^5.1.0",
|
|
"cheerio": "1.0.0-rc.12",
|
|
"mocha": "^10.4.0",
|
|
"typescript": "^5.4.5",
|
|
"vite": "^5.2.10"
|
|
}
|
|
}
|