This repository has been archived on 2023-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
svg-obsidian/package.json

29 lines
710 B
JSON
Raw Normal View History

2023-10-01 20:57:51 +02:00
{
2023-10-01 21:29:46 +02:00
"name": "svg-obsidian",
2023-10-01 20:57:51 +02:00
"version": "1.0.0",
2023-10-01 21:29:46 +02:00
"description": "View SVGs without worrying about the light/dark theme.",
2023-10-01 20:57:51 +02:00
"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"
},
2023-10-01 21:29:46 +02:00
"keywords": [
"obsidian",
"plugin",
"svg"
],
"author": "Mylloon",
2023-10-01 20:57:51 +02:00
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}