mirror of
https://github.com/maitake4211/property-kanban.git
synced 2026-07-22 08:32:16 +00:00
Attestations that pass 'gh attestation verify' are rejected by the community plugin submission checker, and recently accepted plugins ship without attestations (a missing attestation is a non-blocking recommendation). Keep the version stamp so assets stay byte-unique and inherit no attestations from prior releases.
29 lines
852 B
JSON
29 lines
852 B
JSON
{
|
|
"name": "property-kanban",
|
|
"version": "1.0.5",
|
|
"description": "Kanban board for Obsidian driven by note frontmatter properties",
|
|
"main": "main.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"typecheck": "tsc --noEmit",
|
|
"check": "npm run typecheck && npm run lint && npm run test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
"@typescript-eslint/parser": "^7.0.0",
|
|
"esbuild": "^0.28.1",
|
|
"eslint": "^8.57.0",
|
|
"jest": "^29.7.0",
|
|
"obsidian": "latest",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|