fleker_feedly-for-obsidian/package.json
Nick Felker 0022b6a886 Update import and types
Moving to Obsidian 1.6+ is a breaking change
2026-07-08 13:06:25 -04:00

35 lines
859 B
JSON

{
"name": "feedly",
"version": "1.0.0",
"description": "Sync your Feedly annotations to Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"pbuild": "tsc -noEmit -skipLibCheck",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Nick Felker",
"license": "Apache-2.0",
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^18.0.0",
"esbuild": "^0.25.8",
"obsidian": "^1.13.1",
"tslib": "2.4.0",
"typescript": "5.7.2"
},
"dependencies": {
"crypto-js": "^4.2.0",
"jszip": "^3.10.1",
"nodepub": "github:fleker/nodepub#master",
"oauth-1.0a": "^2.2.6",
"process": "^0.11.10"
},
"overrides": {
"tr46": {
"punycode": "npm:punycode@latest"
}
}
}