moyf_easy-copy/package.json

40 lines
1.2 KiB
JSON
Raw Normal View History

2025-03-22 09:35:15 +00:00
{
"name": "obsidian-sample-plugin",
2026-04-02 12:10:23 +00:00
"version": "1.5.2",
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",
"@types/node": "^16.18.126",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
2025-03-22 09:35:15 +00:00
"builtin-modules": "3.3.0",
"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"
},
"dependencies": {
2026-04-02 12:10:23 +00:00
"dotenv": "^16.6.1"
2025-03-22 09:35:15 +00:00
}
}