moyf_easy-copy/package.json

37 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2025-03-22 09:35:15 +00:00
{
"name": "easy-copy",
"version": "1.7.1",
2025-03-22 09:35:15 +00:00
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build:local": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && npm run copy-to-vault",
2025-03-22 13:53:55 +00:00
"copy-to-vault": "node scripts/copy-to-vault.mjs",
2025-05-07 14:02:33 +00:00
"version": "node scripts/version-bump-new.mjs && git add manifest.json versions.json",
2025-10-21 09:13:32 +00:00
"release": "node scripts/release-tag.mjs",
2025-11-05 09:08:41 +00:00
"bump": "node scripts/bump.mjs",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest"
2025-03-22 09:35:15 +00:00
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
2026-04-02 12:10:23 +00:00
"@eslint/js": "^9.39.4",
2026-04-22 05:03:37 +00:00
"@types/node": "^20.19.0",
2026-04-02 12:10:23 +00:00
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
2025-03-22 09:35:15 +00:00
"esbuild": "0.17.3",
2026-04-02 12:10:23 +00:00
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
2025-03-22 09:35:15 +00:00
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
2026-05-15 03:25:16 +00:00
"dependencies": {}
2025-03-22 09:35:15 +00:00
}