@timecrisis/timecrisis-sqlite
Version:
A SQLite storage adapter for the Time Crisis job scheduler
51 lines • 1.17 kB
JSON
{
"name": "@timecrisis/timecrisis-sqlite",
"version": "0.17.0",
"author": "Sandrino Di Mattia",
"license": "MIT",
"description": "A SQLite storage adapter for the Time Crisis job scheduler",
"keywords": [
"timecrisis",
"worker",
"scheduler",
"sqlite",
"typescript",
"node"
],
"engines": {
"node": ">=23.0.0"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@timecrisis/timecrisis": "^0.17.0",
"better-sqlite3": "^11.8.1",
"sqlite-up": "^0.2.0",
"zod": "^3.24.1"
},
"scripts": {
"build": "tsup src/index.ts src/migrations/*.ts --format esm --dts --sourcemap --no-splitting",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint \"**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
}
}