-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.68 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
67
68
{
"name": "@lzwme/sserver",
"version": "0.0.8",
"description": "一个基于 Node.js 的简易静态服务器,用于辅助开发调试随启随用",
"main": "dist/index.js",
"type": "commonjs",
"bin": {
"sserver": "bin/sserver.js",
"ss": "bin/sserver.js"
},
"repository": "https://github.com/lzwme/static-server.git",
"author": {
"name": "renxia",
"email": "lzwy0820@qq.com",
"url": "https://lzw.me"
},
"license": "MIT",
"private": false,
"engines": {
"node": "^14.18.0 || >=16.15.0"
},
"packageManager": "pnpm@9.1.1",
"keywords": [
"server",
"web-server",
"static-server",
"proxy-server"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"files": [
"dist",
"ss.config.sample.js"
],
"scripts": {
"prepare": "husky install",
"ss": "node bin/sserver.js",
"start": "npm run stop && pm2 start dist/index.js --name sserver",
"stop": "pm2 stop sserver",
"watch": "tsc -w",
"dev": "ts-node -T src/cli.ts",
"build": "npm run clean && tsc",
"clean": "flh rm -f dist",
"version": "standard-version",
"release": "npm run build"
},
"dependencies": {
"@lzwme/fe-utils": "^1.5.8",
"commander": "^11.1.0",
"console-log-colors": "^0.4.0",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"node-forge": "^1.3.1",
"serve-index": "^1.9.1"
},
"devDependencies": {
"@lzwme/fed-lint-helper": "^2.5.1",
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/node-forge": "^1.3.10",
"husky": "^8.0.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}