maitake4211_property-kanban/package.json
maitake4211 d57db0865d Disable artifact attestation until the submission checker verifies it correctly (1.0.5)
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.
2026-07-17 20:42:57 +09:00

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"
}
}