mirror of
https://github.com/jheddings/obsidian-stomp.git
synced 2026-07-22 06:44:59 +00:00
57 lines
1.7 KiB
JSON
57 lines
1.7 KiB
JSON
{
|
|
"name": "obsidian-stomp-plugin",
|
|
"version": "0.5.0",
|
|
"description": "Obsidian plugin for foot pedal integration",
|
|
"author": "Jason Heddings",
|
|
"license": "MIT",
|
|
"main": "main.js",
|
|
"config": {
|
|
"tag-version-prefix": ""
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint --fix .",
|
|
"test": "npm run build",
|
|
"preflight": "npm run build && npm test && npm run format && npm run lint",
|
|
"release": "npm run preflight && git push && git push --tags",
|
|
"version": "node version.mjs && npm run format && git add manifest.json versions.json",
|
|
"postversion": "git commit --amend -m \"obsidian-stomp-$npm_package_version\" && git tag -f $npm_package_version"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"stomp",
|
|
"pedal",
|
|
"reading",
|
|
"scroll"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^22.17.0",
|
|
"@typescript-eslint/eslint-plugin": "8.38.0",
|
|
"@typescript-eslint/parser": "8.38.0",
|
|
"builtin-modules": "5.0.0",
|
|
"esbuild": "0.25.8",
|
|
"eslint": "^9.32.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.3",
|
|
"husky": "^9.1.7",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.6.2",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|