h-sphere_sql-seal/package.json
2025-05-22 15:20:40 +01:00

80 lines
2.4 KiB
JSON

{
"name": "sqlseal",
"version": "0.36.0",
"description": "A plugin for Obsidian that allows you to run SQL queries on your notes.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"typecheck": "tsc -noEmit -skipLibCheck",
"build": "node --no-warnings esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"release": "pnpm run build && changeset publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "jest",
"ci:publish": "./scripts/tag-and-publish.sh",
"ci:version": "changeset version && pnpm run version"
},
"keywords": [
"Obsidian",
"SQLite",
"note-taking",
"TypeScript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@types/esprima": "^4.0.6",
"@types/estraverse": "^5.1.7",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^22.15.18",
"@types/papaparse": "^5.3.16",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"builtin-modules": "5.0.0",
"electron-rebuild": "^3.2.9",
"esbuild": "0.25.4",
"esbuild-plugin-replace": "^1.4.0",
"esbuild-sass-plugin": "^3.3.1",
"jest": "^29.7.0",
"obsidian": "^1.8.7",
"prettier": "3.5.3",
"ts-jest": "^29.3.4",
"tslib": "2.8.1",
"typescript": "5.8.3",
"vitepress": "^1.6.3",
"vue": "^3.5.14"
},
"dependencies": {
"@ag-grid-community/theming": "^32.3.5",
"@codemirror/language": "^6.11.0",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.8",
"@hypersphere/omnibus": "^0.1.6",
"@jlongster/sql.js": "^1.6.7",
"@types/jsonpath": "^0.2.4",
"@vanakat/plugin-api": "^0.2.1",
"absurd-sql": "^0.0.54",
"ag-grid-community": "^33.3.0",
"comlink": "^4.4.2",
"esbuild-plugin-polyfill-node": "^0.3.0",
"esprima": "^4.0.1",
"estraverse": "^5.3.0",
"handlebars": "^4.7.8",
"json5": "^2.2.3",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"markdown-table-ts": "^1.0.3",
"ohm-js": "^17.1.0",
"papaparse": "^5.5.2",
"sql-parser-cst": "^0.33.1",
"unidecode": "^1.1.0",
"util": "^0.12.5",
"uuid": "^11.1.0"
}
}