mirror of
https://github.com/groldsf/obsidian_check_plugin.git
synced 2026-07-22 05:37:48 +00:00
36 lines
1 KiB
JSON
36 lines
1 KiB
JSON
{
|
|
"name": "checkbox-sync",
|
|
"version": "1.0.0",
|
|
"description": "Automatically checks the parent checkbox if all child checkboxes are completed, and unchecks it otherwise",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"prebuild": "npm run test",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"test": "jest",
|
|
"test:fast": "jest --no-coverage"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "0BSD",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "^0.25.0",
|
|
"jest": "^29.7.0",
|
|
"jest-html-reporter": "^4.3.0",
|
|
"obsidian": "^1.7.2",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-node": "^10.9.2",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"async-mutex": "^0.5.0",
|
|
"ignore": "^7.0.4"
|
|
}
|
|
}
|