-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "adon-cheats",
"version": "1.0.0",
"description": "At Dead of Night unofficial cheats",
"main": "cheats/connector.js",
"type": "module",
"scripts": {
"build": "rm -rf ./cheats/ && swc ./src -d ./out --copy-files && rollup -c rollup.config.js && rm -rf ./out",
"start": "node out/index.js",
"zip": "rm release.zip ; zip -r release.zip cheats/"
},
"author": "Viktor Shchelochkov <[email protected]> (https://hloth.dev/)",
"license": "MIT",
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"just-clone": "^6.2.0",
"lodash": "^4.17.21",
"rollup": "^4.9.4",
"rollup-plugin-copy": "^3.5.0",
"three": "^0.160.0"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.18",
"@types/lodash": "^4.14.202",
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"esbuild": "^0.15.14",
"eslint": "^8.8.0",
"ts-keycode-enum": "^1.0.6",
"typescript": "^5.1.6"
}
}