-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "wok-server",
"version": "0.4.6",
"packageManager": "pnpm@8.9.0",
"description": "一个基于 NodeJs 和 TypeScript 的后端框架,轻量级、克制、简洁。A lightweight, restrained, and concise backend framework based on Node.js and TypeScript.",
"scripts": {
"build": "rm -rf ./types && rm -rf ./dist && tsc -p ./ -d --declarationDir ./types --outDir ./dist",
"test": "mocha --timeout 300000"
},
"keywords": [
"web",
"http",
"app",
"server",
"framework"
],
"files": [
"types/",
"dist/",
"docs/",
"documentation/",
"README.md"
],
"author": "peak",
"license": "ISC",
"homepage": "https://gitee.com/tai/wok-server",
"repository": {
"type": "git",
"url": "https://gitee.com/tai/wok-server.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@types/formidable": "^3.4.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.5",
"assert": "^2.0.0",
"formidable": "^3.5.1",
"mocha": "^10.2.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.0.3",
"mongodb": "^5.7.0",
"mysql2": "^3.11.0"
},
"main": "dist/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=16.0.0"
}
}