@suger-tdy/electron-sqlite3
Version:
Personal electron sqlite3 Utils For Electron
74 lines • 1.84 kB
JSON
{
"name": "@suger-tdy/electron-sqlite3",
"version": "0.1.1",
"packageManager": "pnpm@7.32.2",
"description": "Personal electron sqlite3 Utils For Electron",
"keywords": [
"electron-sqlite3"
],
"license": "MIT",
"author": "tangdaoyuan <1197633750@qq.com> (https://github.com/tangdaoyuan/)",
"repository": {
"type": "git",
"url": "git+https://github.com/tangdaoyuan/electron-sqlite3.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*"
},
"files": [
"dist",
"*.d.ts"
],
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/tangdaoyuan/electron-sqlite3/issues"
},
"homepage": "https://github.com/tangdaoyuan/electron-sqlite3#readme",
"peerDependencies": {
"electron": "^23.1.1",
"electron-log": "5.0.0-beta.19"
},
"dependencies": {
"better-sqlite3": "^8.3.0",
"knex": "^2.4.2"
},
"devDependencies": {
"@suger-tdy/eslint-config": "1.1.14",
"@types/better-sqlite3": "^7.6.4",
"bumpp": "9.1.0",
"electron": "^23.1.1",
"electron-log": "5.0.0-beta.19",
"esbuild": "0.17.17",
"eslint": "8.38.0",
"tsup": "^6.7.0",
"tsx": "3.12.6",
"typescript": "5.0.4",
"vite": "4.3.0",
"vitest": "0.30.1"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "tsx ./src/index.ts",
"play": "npm -C playground run dev",
"dev": "tsup --watch",
"build": "tsup",
"release": "bumpp --tag --commit --push && pnpm publish"
}
}