forked from ECuiDev/obsidian-quiz-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 961 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "obsidian-quiz-generator",
"version": "2.0.0",
"description": "Generate interactive quizzes from your notes using OpenAI's GPT-3.5 and GPT-4 models.",
"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": [
"obsidian",
"quiz-generator",
"openai"
],
"author": "Edward Cui",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"builtin-modules": "4.0.0",
"esbuild": "0.23.1",
"eslint-plugin-react-hooks": "^4.6.2",
"obsidian": "^1.6.6",
"tslib": "2.6.3",
"typescript": "5.5.4"
},
"dependencies": {
"openai": "^4.56.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}