forked from gslnzfq/obsidian-proxy-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 971 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
{
"name": "obsidian-proxy-server",
"description": "基于next.js实现的obsidian插件主题下载代理服务器",
"version": "0.1.1",
"private": false,
"homepage": "https://github.com/gslnzfq/obsidian-proxy-server#readme",
"author": "gslnzfq <gslnzfq@live.cn>",
"repository": {
"type": "git",
"url": "git+https://github.com/gslnzfq/obsidian-proxy-server.git"
},
"bugs": "https://github.com/gslnzfq/obsidian-proxy-server/issues",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.3.1",
"@types/node": "18.16.1",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"axios": "^1.3.6",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"next": "13.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.0.4"
}
}