You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
{ |
|
"name": "obsidian-sample-plugin", |
|
"version": "2.4.0", |
|
"description": "Hide secrets in your vault", |
|
"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", |
|
|
|
"dev-tool-decrypt": "tsc -noEmit -skipLibCheck && node esbuild-tool-decrypt.config.mjs", |
|
"build-tool-decrypt": "tsc -noEmit -skipLibCheck && node esbuild-tool-decrypt.config.mjs production", |
|
|
|
"dev-tool-mdenc": "tsc -noEmit -skipLibCheck && node esbuild-tool-mdenc.config.mjs", |
|
"build-tool-mdenc": "tsc -noEmit -skipLibCheck && node esbuild-tool-mdenc.config.mjs production" |
|
}, |
|
"keywords": [], |
|
"author": "", |
|
"license": "MIT", |
|
"devDependencies": { |
|
"@types/node": "^22.13.0", |
|
"@types/yargs": "^17.0.33", |
|
"@typescript-eslint/eslint-plugin": "8.22.0", |
|
"@typescript-eslint/parser": "8.22.0", |
|
"builtin-modules": "4.0.0", |
|
"esbuild": "0.24.2", |
|
"esbuild-copy-static-files": "^0.1.0", |
|
"obsidian": "latest", |
|
"tslib": "2.8.1", |
|
"typescript": "5.7.3", |
|
"yargs": "^17.7.2" |
|
} |
|
}
|
|
|