mirror of
https://github.com/yangcht/obsidian-things-toolkit.git
synced 2026-07-22 07:45:44 +00:00
35 lines
1,014 B
JSON
35 lines
1,014 B
JSON
{
|
|
"name": "obsidian-things-toolkit-plugin",
|
|
"version": "1.2.0",
|
|
"type": "module",
|
|
"description": "Sync Things3 completions into Obsidian daily notes with review stats",
|
|
"author": "yangcht",
|
|
"main": "main.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"lint": "eslint src/**/*.ts",
|
|
"build": "npm run lint && rollup -c",
|
|
"build:nolint": "rollup -c",
|
|
"test:watch": "yarn test -- --watch"
|
|
},
|
|
"dependencies": {
|
|
"obsidian-daily-notes-interface": "0.9.2",
|
|
"papaparse": "5.3.1",
|
|
"tslib": "2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.4",
|
|
"@rollup/plugin-commonjs": "^29.0.3",
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
"@types/node": "latest",
|
|
"@types/papaparse": "5.3.1",
|
|
"@typescript-eslint/eslint-plugin": "latest",
|
|
"@typescript-eslint/parser": "latest",
|
|
"eslint": "^9.39.4",
|
|
"obsidian": "latest",
|
|
"rollup": "^4.62.0",
|
|
"typescript": "latest",
|
|
"typescript-eslint": "^8.61.0"
|
|
}
|
|
}
|