-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "@popstarfreas/dimensions",
"version": "6.0.2",
"repository": {
"type": "git",
"url": "git://github.com/popstarfreas/Dimensions.git"
},
"description": "",
"main": "index.js",
"scripts": {
"start": "cd ./build && node ./index.js",
"build": "tsc -p ./",
"fixrescript": "rescript",
"bstart": "npm run build && npm run start",
"bstart-debug": "npm run build && cd ./build && node-debug ./index.js && cd ../",
"test": "npm run build && jasmine --config=jasmine.json",
"makemodule": "rm -rf ./module/* && tsc --declaration -p ./ && mv -v build/node_modules/dimensions/* module && cp package.json module/package.json",
"makerelease": "./makerelease.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"glob": "^7.2.0",
"redis": "^3.1.2",
"require-nocache": "^1.0.0",
"terraria-packet": "github:popstarfreas/rescript-terrariapacket#f3ae36d560b50cb8a61a7a6f89f9813c4edcae04",
"utf8": "^3.0.0",
"uuid": "^8.3.2",
"winston": "^3.12.0",
"@rescript/std": "^11.0.0"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jasmine": "^3.4.0",
"@types/mitm": "^1.3.2",
"@types/node": "^16.11.6",
"@types/redis": "^2.8.32",
"@types/utf8": "^3.0.0",
"@types/uuid": "^8.3.1",
"jasmine": "^3.4.0",
"mitm": "^1.7.2",
"rescript": "^11.0.0",
"typescript": "^4.6.3"
}
}