mirror of
https://github.com/fleker/feedly-for-obsidian.git
synced 2026-07-22 11:50:30 +00:00
35 lines
859 B
JSON
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"
|
|
}
|
|
}
|
|
}
|