Files
copilotkit--copilotkit/packages/sqlite-runner/package.json
T
2026-07-13 12:58:18 +08:00

59 lines
1.4 KiB
JSON

{
"name": "@copilotkit/sqlite-runner",
"version": "1.62.3",
"description": "SQLite-backed agent runner for CopilotKit2",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/CopilotKit.git"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"publint": "publint .",
"attw": "attw --pack . --profile node16"
},
"dependencies": {
"@ag-ui/client": "0.0.57",
"@copilotkit/runtime": "workspace:*",
"rxjs": "7.8.1"
},
"devDependencies": {
"@copilotkit/typescript-config": "workspace:*",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.3",
"better-sqlite3": "^12.2.0",
"tsdown": "^0.20.3",
"typescript": "5.8.2",
"vitest": "^3.0.5"
},
"peerDependencies": {
"better-sqlite3": "^12.2.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"engines": {
"node": ">=18"
}
}