mirror of
https://github.com/jackcarey/obsidian-rule-engine.git
synced 2026-07-22 06:06:01 +00:00
42 lines
No EOL
1.5 KiB
JSON
42 lines
No EOL
1.5 KiB
JSON
{
|
|
"name": "obsidian-rule-engine",
|
|
"version": "1.5.11",
|
|
"description": "Run commands and create custom HTML views for your notes based on filter rules. Transform how your vault behaves and how notes are displayed.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"release": "gh release create %npm_package_version% --generate-notes --fail-on-no-commits main.js manifest.json styles.css --title \"Release %npm_package_version%\" --notes \"Update for version %npm_package_version%\"",
|
|
"publish": "npm run lint:fix & npm run build & npm run version & npm run release",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"keywords": [],
|
|
"author": "Jack Carey",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/compat": "^2.0.0",
|
|
"@eslint/json": "^0.14.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
"@typescript-eslint/parser": "^8.58.2",
|
|
"@types/node": "^20.19.41",
|
|
"@typescript-eslint/utils": "^8.51.0",
|
|
"@vitest/coverage-v8": "^4.1.6",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"jsdom": "^29.1.1",
|
|
"moment": "^2.30.1",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^6.0.2",
|
|
"typescript-eslint": "^8.58.2"
|
|
},
|
|
"dependencies": {
|
|
"nanoid": "^5.1.6"
|
|
}
|
|
} |