-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
66 lines (66 loc) · 1.34 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
57
58
59
60
61
62
63
64
65
66
{
"name": "sgo",
"version": "3.0.3",
"description": "Setting a directory to a static server.",
"homepage": "https://jaywcjlove.github.io/sgo/",
"author": "kenny wang <wowohoo@qq.com>",
"main": "lib/server.js",
"license": "MIT",
"bin": {
"sgo": "lib/sgo.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsbb build",
"watch": "tsbb watch",
"type-check": "tsc --noEmit",
"test:doc": "node lib/sgo.js -d node_modules/@uiw/doc/web",
"test": "tsbb test",
"coverage": "tsbb test --coverage"
},
"keywords": [
"ssr",
"sgo",
"server-go",
"server",
"iserver",
"command",
"cli",
"parsing",
"parser",
"option",
"args",
"argument",
"tool"
],
"files": [
"lib",
"src",
".bin"
],
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/sgo.git"
},
"markdown-to-html": {
"reurls": {
"README-zh.md": "index.zh.html",
"README.md": "index.html"
}
},
"dependencies": {
"chokidar": "^3.5.3",
"ejs": "^3.1.9",
"fs-extra": "^11.1.1",
"get-port": "^5.1.1",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/fs-extra": "^11.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.11",
"@uiw/doc": "^4.21.28",
"tsbb": "^4.0.1"
}
}