groldsf_obsidian_check_plugin/package.json

34 lines
1,002 B
JSON
Raw Normal View History

2025-02-01 00:53:06 +00:00
{
2025-02-18 17:50:31 +00:00
"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",
2025-02-18 17:50:31 +00:00
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
2025-04-11 15:07:53 +00:00
"prebuild": "npm run test",
2025-02-18 17:50:31 +00:00
"version": "node version-bump.mjs && git add manifest.json versions.json",
2025-04-11 15:07:53 +00:00
"test": "jest",
"test:fast": "jest --no-coverage"
2025-02-18 17:50:31 +00:00
},
"keywords": [],
"author": "",
"license": "MIT",
"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",
"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"
2025-02-18 17:50:31 +00:00
}
2025-04-11 15:07:53 +00:00
}