moyf_easy-copy/package.json
Moy 620460fe5a build: 1.7.0
- Code block detection now returns innermost nested block
- Settings tab: async/await -> void in onChange handlers
- Settings tab: SettingGroup updates
- package.json: fix name field to easy-copy
2026-05-26 22:13:30 +08:00

36 lines
1.1 KiB
JSON

{
"name": "easy-copy",
"version": "1.7.0",
"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",
"copy-to-vault": "node scripts/copy-to-vault.mjs",
"version": "node scripts/version-bump-new.mjs && git add manifest.json versions.json",
"release": "node scripts/release-tag.mjs",
"bump": "node scripts/bump.mjs",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^20.19.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"esbuild": "0.17.3",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"dependencies": {}
}