nathonius_obsidian-trello/package.json
2026-01-03 11:45:13 +01:00

53 lines
1.5 KiB
JSON

{
"name": "obsidian-trello",
"version": "2.3.4",
"description": "Connect an existing or new Trello card to an Obsidian note. Once connected, see basic info, add and view comments, and check off checklist items.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nathonius/obsidian-trello/"
},
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js",
"build": "rollup --config rollup.config.js --environment BUILD:production",
"prepare": "husky install",
"lint": "eslint src/"
},
"keywords": [],
"author": {
"name": "Nathonius",
"url": "https://nathan-smith.org/"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"obsidian": "^1.11.0",
"prettier": "^3.7.4",
"rollup": "^4.54.0",
"rollup-plugin-scss": "^4.0.1",
"@rollup/plugin-terser": "^0.4.4",
"sass": "^1.97.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"nanoid": "^5.1.6",
"rxjs": "^7.8.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,scss}": "prettier --write"
}
}