mirror of
https://github.com/moyf/easy-copy.git
synced 2026-07-22 05:43:47 +00:00
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"name": "obsidian-sample-plugin",
|
|
"version": "1.6.5",
|
|
"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": {}
|
|
}
|