-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 908 Bytes
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
{
"name": "github-pr-tracker",
"version": "1.5.1",
"description": "Manage GitHub pull request reviews directly from Obsidian.",
"main": "main.js",
"type": "module",
"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",
"lint": "eslint ."
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.15.17",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"esbuild": "0.25.5",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.3.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^17.6.0",
"jiti": "^2.6.1",
"obsidian": "^1.13.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.59.1"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}