mirror of
https://github.com/core-hn/pseudobsidian-ization.git
synced 2026-07-22 06:57:06 +00:00
Bump minAppVersion to 1.13.0 (obsidian@1.13.1 typings) to use the declarative getSettingDefinitions() API and ButtonComponent.setDestructive(), replacing the deprecated display() and setWarning(). Settings tab converted to declarative settings with render escape hatches. Static imports of fs/path replace remaining require() calls in main.ts.
37 lines
1.6 KiB
JSON
37 lines
1.6 KiB
JSON
{
|
|
"name": "pseudonymizer-tool",
|
|
"version": "0.1.7",
|
|
"description": "Obsidian plugin for pseudonymizing and correcting interactional transcripts (Jefferson, ICOR, SRT, CHAT/CHA).",
|
|
"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",
|
|
"build:cities": "node scripts/build-cities.mjs",
|
|
"deploy": "npm run build && node -e \"const {mkdirSync,copyFileSync,existsSync}=require('fs'),d='test_vault/.obsidian/plugins/pseudonymizer-tool',w='node_modules/@xenova/transformers/dist';mkdirSync(d,{recursive:true});['main.js','manifest.json','styles.css'].forEach(f=>{if(existsSync(f))copyFileSync(f,d+'/'+f);});['ort-wasm-simd-threaded.wasm','ort-wasm-simd.wasm','ort-wasm-threaded.wasm','ort-wasm.wasm'].forEach(f=>{if(existsSync(w+'/'+f))copyFileSync(w+'/'+f,d+'/'+f);})\""
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/state": "^6.0.0",
|
|
"@codemirror/view": "^6.0.0",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"esbuild": "^0.20.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"jest": "^29.5.0",
|
|
"obsidian": "^1.13.1",
|
|
"prettier": "^3.0.0",
|
|
"ts-jest": "^29.4.9",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"dependencies": {
|
|
"@xenova/transformers": "^2.17.2"
|
|
}
|
|
}
|