mirror of
https://github.com/core-hn/pseudobsidian-ization.git
synced 2026-07-22 06:57:06 +00:00
- License: GPL-3.0 (GitHub-detectable, replaces CC BY 4.0) - minAppVersion bumped to 1.6.6 — enables FileManager.trashFile() - Replace builtin-modules with Node.js native builtinModules - Add @codemirror/view and @codemirror/state to devDependencies - Remove unused imports (MappingFile, MappingStatus, MappingRule, PseudonymizationEngine) - Remove unused variable in OccurrencesModal - window.setTimeout and activeDocument for popout window compatibility - Explicit type casts on JSON.parse calls (no unsafe any)
32 lines
963 B
JSON
32 lines
963 B
JSON
{
|
|
"name": "pseudonymizer-tool",
|
|
"version": "0.0.6",
|
|
"description": "Plugin Obsidian de pseudonymisation de transcriptions",
|
|
"author": "Axelle Abbadie",
|
|
"homepage": "https://cv.hal.science/axelle-abbadie/",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"lint": "eslint src --ext .ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"@codemirror/state": "^6.0.0",
|
|
"@codemirror/view": "^6.0.0",
|
|
"esbuild": "^0.20.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"jest": "^29.5.0",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.0.0",
|
|
"ts-jest": "^29.4.9",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
}
|