{ "name": "obsidian-things-toolkit-plugin", "version": "1.8.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", "test": "tsx --test test/*.test.ts", "typecheck": "tsc --noEmit -p tsconfig.json", "test:typecheck": "tsc --noEmit -p tsconfig.test.json", "build": "npm run lint && npm test && npm run typecheck && npm run test:typecheck && rollup -c", "build:nolint": "rollup -c", "release:create": "npm run build && VERSION=$(node -p \"require('./manifest.json').version\") && gh release create \"$VERSION\" main.js manifest.json styles.css --title \"$VERSION\" --notes-file RELEASE_NOTES.md", "release:upload": "npm run build && VERSION=$(node -p \"require('./manifest.json').version\") && gh release edit \"$VERSION\" --notes-file RELEASE_NOTES.md && (gh release delete-asset \"$VERSION\" versions.json -y >/dev/null 2>&1 || true) && gh release upload \"$VERSION\" main.js manifest.json styles.css --clobber", "test:watch": "npm test -- --watch" }, "dependencies": { "@types/papaparse": "5.3.1", "obsidian": "1.13.1", "obsidian-daily-notes-interface": "0.9.5", "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": "24.10.1", "@typescript-eslint/eslint-plugin": "8.61.0", "@typescript-eslint/parser": "8.61.0", "eslint": "^9.39.4", "eslint-plugin-obsidianmd": "^0.3.0", "rollup": "^4.62.0", "tsx": "4.22.4", "typescript": "5.9.3", "typescript-eslint": "8.61.0" } }