mirror of
https://github.com/chloedia/Obsidian_Quiz_Generator.git
synced 2026-07-22 08:20:23 +00:00
35 lines
933 B
JSON
35 lines
933 B
JSON
{
|
|
"name": "obsidian-sample-plugin",
|
|
"version": "1.0.0",
|
|
"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",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/debug": "^4.1.7",
|
|
"@types/node": "^16.11.6",
|
|
"@types/underscore": "^1.11.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^8.47.0",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.0.2",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.3.4",
|
|
"openai": "^4.79.1",
|
|
"safe-await": "^2.0.0",
|
|
"underscore": "^1.13.6",
|
|
"zod": "^3.24.1"
|
|
}
|
|
}
|