rybaier_obsidian-chat-splitter/package.json
Ryan Baier 0a29c2ed3d fix(review): replace JSZip with fflate to eliminate dynamic script elements
JSZip's bundled immediate/setImmediate polyfills contain IE9-era
fallbacks that call document.createElement("script"). The branches
never run in Obsidian's Electron runtime, but Obsidian's review
scanner statically flags them as 4 dynamic script-element creations.

fflate is a modern, zero-dependency ZIP library with no such
polyfills. The swap also cuts the production bundle from ~315KB
to ~174KB.

Bump version to 0.1.2.
2026-05-15 17:36:09 -07:00

43 lines
1,009 B
JSON

{
"name": "obsidian-chat-splitter",
"version": "0.1.2",
"description": "Split long AI chat transcripts into organized, topic-specific notes.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"chat",
"ai",
"chatgpt",
"claude",
"splitter",
"notes"
],
"author": "Ryan Baier",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rybaier/obsidian-chat-splitter.git"
},
"homepage": "https://github.com/rybaier/obsidian-chat-splitter",
"bugs": {
"url": "https://github.com/rybaier/obsidian-chat-splitter/issues"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/parser": "^8.58.1",
"esbuild": "0.24.2",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "5.9.3"
},
"dependencies": {
"fflate": "^0.8.3"
}
}