-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "cbt-exam",
"version": "1.5.3",
"description": "CBT Exam Simulator",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint .",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"plugin",
"exam",
"quiz",
"flashcard",
"cbt"
],
"author": "nazdridoy",
"repository": {
"type": "git",
"url": "https://github.com/nazdridoy/obsidian-cbt-exam"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^16.11.6",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"esbuild": "0.17.3",
"eslint": "^9.0.0",
"eslint-plugin-obsidianmd": "^0.1.9",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^14.0.0",
"jiti": "^2.6.1",
"obsidian": "^1.8.7",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
},
"dependencies": {
"lucide-react": "^0.563.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}