h-sphere_sql-seal/package.json
Kacper Kula 403e9f3d0c
Interactive SQL Visualiser (#177)
* chore: reworking plugin internals into modules

* feat: settings module is now working, added debug module, enabled new api module

* chore: restoring external API

* feat: refactoring project to use proper inversion of control

* feat: plugins can now be loaded in any order

* chore: final file migration, all typescript is in modules now

* chore: fixing dependencies of cellParser

* feat: csv and json views are only registered when they are not colliding with other plugins

* feat: fixed library behaviour on canvas

* feat: added ability to hide columns from csv files

* feat: adding global tables support (wip)

* feat: global tables full implementation

* feat: sqlite databases can now be previewed in explorer

* feat: improved explorer view

* feat: highlighting code in the copy code modal

* feat: advanced interactive schema visualiser
2025-08-10 10:21:12 +01:00

83 lines
2.5 KiB
JSON

{
"name": "sqlseal",
"version": "0.37.1",
"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.17",
"@types/node": "^22.15.29",
"@types/papaparse": "^5.3.16",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "8.33.1",
"@typescript-eslint/parser": "8.33.1",
"builtin-modules": "5.0.0",
"electron-rebuild": "^3.2.9",
"esbuild": "0.25.5",
"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": "2.0.0-alpha.5",
"vue": "^3.5.16"
},
"dependencies": {
"@ag-grid-community/theming": "^32.3.5",
"@codemirror/language": "^6.11.1",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.37.1",
"@hypersphere/dity": "^0.0.9",
"@hypersphere/dity-graph": "^0.0.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.2",
"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.4.0",
"ohm-js": "^17.1.0",
"papaparse": "^5.5.3",
"sql-parser-cst": "^0.33.1",
"unidecode": "^1.1.0",
"util": "^0.12.5",
"uuid": "^11.1.0"
}
}