-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.45 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "obsidian-github-link",
"version": "1.0.2",
"description": "An Obsidian plugin enriching notes with issue and pull request content from GitHub",
"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",
"lint": "eslint src/",
"test": "jest"
},
"keywords": [],
"author": {
"name": "Nathonius",
"url": "https://nathan-smith.org/"
},
"license": "MIT",
"devDependencies": {
"@codemirror/language": "^6.10.2",
"@codemirror/view": "^6.23.0",
"@eslint/js": "^9.1.1",
"@jest/globals": "^29.7.0",
"@types/lodash": "^4.17.5",
"@types/node": "^20.11.19",
"builtin-modules": "3.3.0",
"esbuild": "0.20.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"octokit": "^3.1.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tslib": "2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
},
"dependencies": {
"@octokit/auth-oauth-device": "^6.0.1",
"@octokit/core": "^5.1.0",
"@octokit/openapi-types": "^19.1.0",
"@octokit/plugin-rest-endpoint-methods": "^10.3.0",
"@octokit/request": "^8.2.0",
"lodash": "^4.17.21",
"queue": "^7.0.0"
}
}