habitica-sync/package.json

45 lines
1.3 KiB
JSON
Raw Normal View History

2020-10-25 16:55:59 -04:00
{
"name": "obsidian-habitica-integration",
2021-04-23 17:01:43 -04:00
"version": "0.12.0",
"description": "This plugin allows for Habitica integration into Obsidian",
2020-10-25 16:55:59 -04:00
"main": "main.js",
"scripts": {
2020-10-26 11:58:14 -04:00
"dev": "rollup --config rollup.config.js -w",
2021-11-20 17:11:13 +08:00
"build": "rollup --config rollup.config.js --environment BUILD:production",
2021-11-21 22:13:19 +08:00
"test": "obsidian-plugin dev src/main.ts"
2020-10-25 16:55:59 -04:00
},
"keywords": [],
"author": "Leonard and Ran",
2020-10-25 16:55:59 -04:00
"license": "MIT",
"devDependencies": {
2021-04-12 19:06:03 -04:00
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^14.14.37",
2021-10-07 23:29:16 -07:00
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
2021-10-16 23:33:38 +05:30
"@types/react-tabs": "^2.3.3",
2021-10-10 21:08:13 -07:00
"css-loader": "^6.4.0",
"extract-text-webpack-plugin": "^2.1.2",
2021-04-23 17:01:43 -04:00
"obsidian": "^0.12.0",
2021-11-20 17:11:13 +08:00
"obsidian-plugin-cli": "^0.4.3",
2020-10-26 11:58:14 -04:00
"rollup": "^2.32.1",
2021-10-10 21:08:13 -07:00
"style-loader": "^3.3.0",
2021-04-12 19:06:03 -04:00
"tslib": "^2.2.0",
"typescript": "^4.2.4"
2021-10-07 23:29:16 -07:00
},
"dependencies": {
2021-11-21 22:13:19 +08:00
"i18next": "^21.5.2",
"i18next-browser-languagedetector": "^6.1.2",
2021-10-07 23:29:16 -07:00
"node": "^16.10.0",
"node-fetch": "^3.0.0",
"react": "^17.0.2",
2021-10-16 23:33:38 +05:30
"react-dom": "^17.0.2",
2021-11-16 18:53:03 +05:30
"react-emoji-render": "^1.2.4",
"react-hook-form": "^7.20.2",
2021-11-21 22:13:19 +08:00
"react-i18next": "^11.14.2",
2021-11-20 17:11:13 +08:00
"react-markdown": "^7.1.0",
2021-10-16 23:33:38 +05:30
"react-tabs": "^3.2.2"
2020-10-25 16:55:59 -04:00
}
}