This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.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
{
"name": "voxels-scripting-server",
"version": "0.9.11",
"description": "A basic server to run Voxels.com scripts",
"lib": "dist/src/index.d.ts",
"main": "dist/src/index.js",
"scripts": {
"clean": "rm -rf dist",
"test:server": "ts-node client/server.ts",
"test:client": "ts-node client/client_test.ts",
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsc",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push origin && git push origin --tags",
"all": "npm run clean && npm run prepare && npm run version && npm run postversion"
},
"author": "Benjy Larcher",
"license": "ISC",
"files": [
"dist"
],
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"node-fetch": "^2.6.7",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"vm2": "^3.9.9",
"winston": "^3.7.2",
"ws": "^8.6.0"
},
"repository": {
"type": "git",
"directory": "https://github.com/cryptovoxels/Voxels-Scripting-Server"
},
"bugs": {
"url": "https://github.com/cryptovoxels/Voxels-Scripting-Server/issues"
},
"homepage": "https://github.com/cryptovoxels/Voxels-Scripting-Server",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.33",
"@types/node-fetch": "^2.6.1",
"@types/ws": "^8.5.3",
"tslint": "^6.1.3"
}
}