yangcht_obsidian-things-too.../package.json
2026-06-23 23:00:06 +02:00

42 lines
No EOL
1.7 KiB
JSON

{
"name": "obsidian-things-toolkit-plugin",
"version": "1.6.5",
"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 \"Release $VERSION\"",
"release:upload": "npm run build && VERSION=$(node -p \"require('./manifest.json').version\") && (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": {
"@obsidian-typings/obsidian-public-latest": "6.16.0",
"obsidian": "1.13.1",
"obsidian-daily-notes-interface": "0.9.2",
"papaparse": "5.3.1",
"tslib": "2.2.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "24.10.1",
"@types/papaparse": "5.3.1",
"@typescript-eslint/eslint-plugin": "8.61.0",
"@typescript-eslint/parser": "8.61.0",
"eslint": "10.0.0",
"rollup": "^4.62.0",
"tsx": "4.22.4",
"typescript": "5.9.3",
"typescript-eslint": "8.61.0"
}
}