-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
53
54
55
56
{
"name": "EasyTypora",
"version": "1.0.0",
"description": "简单上传Typora图片到自建服务器的工具",
"main": "index.js",
"pkg": {
"scripts": [
"conf.md"
],
"assets": [],
"targets": [
"node14-linux-x64",
"node14-macos-x64",
"node14-win-x86"
]
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-static": "^1.2.6",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"gray-matter": "^4.0.2",
"moment": "^2.29.1",
"multer": "^1.4.2",
"needle": "^2.5.2",
"nodemon": "^2.0.6",
"pkg": "^4.4.9",
"pm2": "^4.5.1",
"request": "^2.88.2"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-win": "pkg ./client/typora.js -t win -o ./dist/typora-win.exe",
"build-linux": "pkg ./client/typora.js -t linux -o ./dist/typora-linux.sh",
"build-mac": "pkg ./client/typora.js -t macos -o ./dist/typora-mac.app",
"build": "npm run build-win && npm run build-linux && npm run build-mac",
"dev": "nodemon ./server/index.js",
"start": "pm2 start ./server/index.js",
"stop": "pm2 stop ./server/index.js",
"list": "pm2 list"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhaoolee/EasyTypora.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zhaoolee/EasyTypora/issues"
},
"homepage": "https://github.com/zhaoolee/EasyTypora#readme"
}