nathonius_obsidian-trello/package.json
2024-02-18 23:33:26 -05:00

51 lines
1.5 KiB
JSON

{
"name": "obsidian-trello",
"version": "2.1.1",
"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.",
"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": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"obsidian": "^1.2.8",
"prettier": "^2.4.0",
"rollup": "^2.32.1",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.38.0",
"tslib": "^2.2.0",
"typescript": "^4.3.5"
},
"dependencies": {
"nanoid": "^3.1.25",
"rxjs": "^7.3.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,scss}": "prettier --write"
}
}