-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 872 Bytes
/
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
{
"name": "aladarserver",
"version": "1.0.0-alpha",
"description": "Server for aladar userscript.",
"main": "build/src/index.js",
"scripts": {
"tsserver": "tsc -w -p .",
"build": "tsc -p .",
"freshbuild": "rm -r ./build/ && tsc -p .",
"test": "clear && tsc -p . && node .",
"start": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClintFlames/aladarServer.git"
},
"keywords": [
"aladar",
"diep",
"io",
"ally",
"radar",
"userscript"
],
"author": "ClintFlames",
"license": "MIT",
"bugs": {
"url": "https://github.com/ClintFlames/aladarServer/issues"
},
"homepage": "https://github.com/ClintFlames/aladarServer#readme",
"devDependencies": {
"@types/node": "^20.4.1",
"@types/ws": "^8.5.5",
"typescript": "^5.1.6"
},
"dependencies": { "ws": "8.13.0" },
"engines" : { "node" : ">=14.0.0" }
}