forked from popstarfreas/Dimensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.44 KB
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
69
70
71
72
73
74
75
76
77
78
{
"name": "@popstarfreas/dimensions",
"version": "7.0.0-alpha.1",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/popstarfreas/Dimensions.git"
},
"description": "",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/dimensions/index.js",
"require": "./build/dimensions/index.js",
"types": "./build/dimensions/index.d.ts"
},
"./extension": {
"import": "./build/dimensions/extension/index.js",
"require": "./build/dimensions/extension/index.js",
"types": "./build/dimensions/extension/index.d.ts"
},
"./extension/*": {
"import": "./build/dimensions/extension/*.js",
"require": "./build/dimensions/extension/*.js",
"types": "./build/dimensions/extension/*.d.ts"
},
"./packets/*": {
"import": "./build/dimensions/packets/*.js",
"require": "./build/dimensions/packets/*.js",
"types": "./build/dimensions/packets/*.d.ts"
},
"./datatypes/*": {
"import": "./build/dimensions/datatypes/*.js",
"require": "./build/dimensions/datatypes/*.js",
"types": "./build/dimensions/datatypes/*.d.ts"
},
"./*": {
"import": "./build/*.js",
"require": "./build/*.js",
"types": "./build/*.d.ts"
}
},
"scripts": {
"start": "cd ./build && node ./index.js",
"build": "tsc -p ./",
"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/dimensions/* module && cp package.json module/package.json",
"makerelease": "./makerelease.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"@popstarfreas/packetfactory": "^7.1.3",
"@rescript/runtime": "^12.0.0",
"glob": "^11.0.3",
"redis": "^3.1.2",
"terraria-packet": "github:popstarfreas/rescript-terrariapacket#d70c4c8fe3ba28b3ddb17c5bd44131abbc4372df",
"utf8": "^3.0.0",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/glob": "^9.0.0",
"@types/jasmine": "^3.4.0",
"@types/mitm": "^1.3.2",
"@types/node": "^24.0.14",
"@types/redis": "^2.8.32",
"@types/utf8": "^3.0.0",
"@types/uuid": "^10.0.0",
"jasmine": "^3.4.0",
"mitm": "^1.7.3",
"typescript": "^5.8.3"
}
}