2023-08-16 13:14:07 +00:00
{
"name" : "obsidian-sample-plugin" ,
2023-08-31 09:44:18 +00:00
"version" : "1.1.1" ,
2023-08-16 13:14:07 +00:00
"description" : "This is a plugin for Obsidian that adds an icon inside each inline code, which when clicked, copies the content of the code into the clipboard." ,
"main" : "main.js" ,
"scripts" : {
"dev" : "node esbuild.config.mjs" ,
"build" : "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production" ,
2023-08-21 15:07:46 +00:00
"version" : "node version-bump.mjs && git add manifest.json versions.json" ,
"commit" : "cz"
2023-08-16 13:14:07 +00:00
} ,
"keywords" : [ ] ,
"author" : "" ,
"license" : "MIT" ,
"devDependencies" : {
"@codemirror/language" : "^6.8.0" ,
2023-08-22 08:37:25 +00:00
"@types/node" : "^16.11.6" ,
2023-08-16 13:14:07 +00:00
"@typescript-eslint/eslint-plugin" : "5.29.0" ,
"@typescript-eslint/parser" : "5.29.0" ,
"builtin-modules" : "3.3.0" ,
2023-08-21 15:07:46 +00:00
"commitizen" : "^4.3.0" ,
"cz-conventional-changelog" : "^3.3.0" ,
2023-08-16 13:14:07 +00:00
"esbuild" : "0.17.3" ,
"obsidian" : "latest" ,
"tslib" : "2.4.0" ,
"typescript" : "4.7.4"
2023-08-21 15:07:46 +00:00
} ,
"config" : {
"commitizen" : {
"path" : "./node_modules/cz-conventional-changelog"
}
2023-08-16 13:14:07 +00:00
}
}