-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "@code-game-project/server",
"version": "0.4.0",
"description": "This is the JavaScript (and TypeScript) server library for CodeGame.",
"license": "MIT",
"author": {
"name": "Maxwell Matthis",
"email": "contact@maxwellmatthis.de"
},
"homepage": "https://github.com/code-game-project/javascript-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/code-game-project/javascript-server.git"
},
"bugs": {
"url": "https://github.com/code-game-project/javascript-server/issues"
},
"type": "module",
"main": "dist/lib.js",
"directories": {
"lib": "dist"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"start": "echo \"Error: This is not meant to be run on its own. Please import it into your own program.\" && exit 1",
"build": "npx tsc --project tsconfig.json --declaration",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.13",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"typescript": "^4.7.3"
},
"dependencies": {
"consola": "^2.15.3",
"cors": "^2.8.5",
"express": "^4.18.1",
"uuid": "^8.3.2",
"ws": "^8.7.0"
}
}