h-sphere_sql-seal/package.json

83 lines
2.5 KiB
JSON

{
"name": "sqlseal",
"version": "0.38.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.5",
"@types/esprima": "^4.0.6",
"@types/estraverse": "^5.1.7",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.2.1",
"@types/papaparse": "^5.3.16",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "8.39.1",
"@typescript-eslint/parser": "8.39.1",
"builtin-modules": "5.0.0",
"electron-rebuild": "^3.2.9",
"esbuild": "0.25.9",
"esbuild-plugin-replace": "^1.4.0",
"esbuild-sass-plugin": "^3.3.1",
"jest": "^30.0.5",
"obsidian": "^1.8.7",
"prettier": "3.6.2",
"ts-jest": "^29.4.1",
"tslib": "2.8.1",
"typescript": "5.9.2",
"vitepress": "2.0.0-alpha.11",
"vue": "^3.5.18"
},
"dependencies": {
"@ag-grid-community/theming": "^32.3.9",
"@codemirror/language": "^6.11.2",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.1",
"@hypersphere/dity": "^0.0.10",
"@hypersphere/dity-graph": "^0.0.10",
"@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": "^34.1.1",
"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",
"mermaid": "11.9.0",
"ohm-js": "^17.2.1",
"papaparse": "^5.5.3",
"sql-parser-cst": "^0.33.1",
"unidecode": "^1.1.0",
"util": "^0.12.5",
"uuid": "^11.1.0"
}
}