2024-11-05 04:37:25 +00:00
|
|
|
{
|
2024-11-13 21:41:39 +00:00
|
|
|
"name": "coalesce",
|
2026-06-04 03:11:10 +00:00
|
|
|
"version": "2.0.2",
|
2025-02-05 13:35:51 +00:00
|
|
|
"description": "Coalesce your (backlinked) notes into a single document stream (with style)",
|
2024-11-05 04:37:25 +00:00
|
|
|
"main": "main.js",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "node esbuild.config.mjs",
|
2025-12-03 20:37:25 +00:00
|
|
|
"qa": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs qa",
|
2024-11-05 04:37:25 +00:00
|
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
2025-12-03 20:37:25 +00:00
|
|
|
"prod": "npm run build",
|
2025-11-15 21:00:59 +00:00
|
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
|
|
|
"test": "jest",
|
|
|
|
|
"test:watch": "jest --watch",
|
2025-11-19 18:32:32 +00:00
|
|
|
"test:coverage": "jest --coverage",
|
2025-11-19 18:45:37 +00:00
|
|
|
"lint:css": "stylelint \"styles/**/*.css\"",
|
|
|
|
|
"lint:css:unused": "node scripts/check-unused-css.mjs"
|
2024-11-05 04:37:25 +00:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"devDependencies": {
|
2025-11-15 21:00:59 +00:00
|
|
|
"@types/jest": "^29.5.0",
|
2024-11-05 04:37:25 +00:00
|
|
|
"@types/node": "^16.11.6",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
|
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
|
|
|
"esbuild": "0.17.3",
|
2025-11-15 21:00:59 +00:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2024-11-05 04:37:25 +00:00
|
|
|
"obsidian": "latest",
|
2026-06-04 14:26:18 +00:00
|
|
|
"stylelint": "^16.6.1",
|
|
|
|
|
"stylelint-config-standard": "^36.0.0",
|
2025-11-15 21:00:59 +00:00
|
|
|
"ts-jest": "^29.1.0",
|
2024-11-05 04:37:25 +00:00
|
|
|
"tslib": "2.4.0",
|
2026-06-04 14:26:18 +00:00
|
|
|
"typescript": "4.7.4"
|
2024-11-05 04:37:25 +00:00
|
|
|
}
|
2026-06-04 14:26:18 +00:00
|
|
|
}
|