-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.32 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": "mc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --watch ../assets -e \"*\" --exec ./node_modules/.bin/webpack serve --port 20000",
"watch": "webpack --watch",
"zipstandalone": "./zipstandalone.sh",
"build": "webpack",
"docs": "typedoc --name 'Unearthed Mod API' src/mods/ModApi.ts",
"debugrelease": "webpack --devtool=inline-source-map",
"release": "webpack --mode=production --devtool=source-map"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/uuid": "^9.0.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jszip": "^3.10.1",
"livekit-client": "^1.11.2",
"monaco-editor": "^0.39.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"nanoid": "^4.0.2",
"nodemon": "^2.0.22",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.3",
"transformation-matrix": "^2.15.0",
"ts-loader": "^9.4.3",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.1.3",
"url-loader": "^4.1.1",
"uuid": "^9.0.0",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"devDependencies": {
"@types/webpack-env": "^1.18.1",
"typedoc": "^0.24.8"
}
}