bfloydd_coalesce/package.json
2025-12-03 13:37:25 -07:00

37 lines
1.1 KiB
JSON

{
"name": "coalesce",
"version": "1.0.0",
"description": "Coalesce your (backlinked) notes into a single document stream (with style)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"qa": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs qa",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"prod": "npm run build",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint:css": "stylelint \"styles/**/*.css\"",
"lint:css:unused": "node scripts/check-unused-css.mjs"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@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.17.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"ts-jest": "^29.1.0",
"tslib": "2.4.0",
"typescript": "4.7.4",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0"
}
}