mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 19:04:43 +00:00
- Remove blank line insertion after each parent task group - Add support for orphaned subtasks (subtasks whose parent is not in the current task list) - Add comprehensive tests for markdown formatting without extra blank lines
31 lines
965 B
JSON
31 lines
965 B
JSON
{
|
|
"name": "sync-md",
|
|
"version": "2.0.0",
|
|
"description": "Sync markdown files with SuperProductivity projects",
|
|
"scripts": {
|
|
"watch": "node scripts/watch.js",
|
|
"build": "node scripts/build.js",
|
|
"deploy": "npm run build && node scripts/deploy.js",
|
|
"lint": "eslint src --ext .ts --max-warnings 0",
|
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
"prettier": "prettier --write 'src/**/*.{ts,js,json}'",
|
|
"prettier:check": "prettier --check 'src/**/*.{ts,js,json}'",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^30.0.3",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^22.15.33",
|
|
"archiver": "^7.0.1",
|
|
"esbuild": "^0.19.11",
|
|
"jest": "^30.0.4",
|
|
"jest-environment-jsdom": "^30.0.4",
|
|
"ts-jest": "^29.4.0",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@super-productivity/plugin-api": "file:../plugin-api"
|
|
}
|
|
}
|