noteshare.space/plugin/package.json

33 lines
863 B
JSON
Raw Normal View History

2022-06-18 17:51:45 +03:00
{
"name": "obsidian-sample-plugin",
"version": "1.0.1",
"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",
2022-06-18 22:51:06 +03:00
"test": "vitest",
"coverage": "vitest run --coverage",
2022-06-18 17:51:45 +03:00
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
2022-06-18 22:51:06 +03:00
"@types/crypto-js": "^4.1.1",
2022-06-18 17:51:45 +03:00
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
2022-06-18 22:51:06 +03:00
"c8": "^7.11.3",
2022-06-18 17:51:45 +03:00
"esbuild": "0.13.12",
"obsidian": "latest",
"tslib": "2.3.1",
2022-06-18 22:51:06 +03:00
"typescript": "4.4.4",
"vitest": "^0.15.1"
},
"dependencies": {
"crypto-js": "^4.1.1"
2022-06-18 17:51:45 +03:00
}
}