mirror of
https://github.com/directus/directus.git
synced 2026-01-15 05:37:55 -05:00
40 lines
1015 B
JSON
40 lines
1015 B
JSON
{
|
|
"name": "@directus/data-sql",
|
|
"version": "0.2.1",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format=esm --dts",
|
|
"dev": "tsup src/index.ts --format=esm --dts --watch",
|
|
"test": "vitest --watch=false"
|
|
},
|
|
"description": "Shared SQL helpers for SQL-based drivers",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/data-sql"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"license": "BSUL-1.1",
|
|
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@directus/data": "workspace:*",
|
|
"@directus/random": "workspace:*",
|
|
"@directus/tsconfig": "workspace:*",
|
|
"@directus/types": "workspace:*",
|
|
"@types/node": "18.16.12",
|
|
"@vitest/coverage-c8": "0.31.1",
|
|
"tsup": "7.2.0",
|
|
"typescript": "5.2.2",
|
|
"vitest": "0.31.1"
|
|
}
|
|
}
|