-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "arunacore",
"version": "1.0.0-BETA.0",
"description": "ArunaCore is an open source websocket server made with nodejs for intercomunication between applications.",
"main": "build/nodejs/src/main/start.js",
"type": "module",
"scripts": {
"preinstall": "cd api && npm install",
"preci": "cd api && npm ci",
"start": "node --loader=./build/nodejs/src/main/loader.js build/nodejs/src/main/start.js",
"eslint:fix": "eslint ./src --fix && eslint ./api/src --fix",
"build": "npx tsc --build",
"postbuild": "node src/scripts/updateResources.cjs",
"predist": "npm run build",
"dist": "node src/scripts/dist.cjs",
"pretest": "npm run build",
"test": "node --loader=./build/nodejs/src/main/loader.js build/nodejs/src/tests/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArunaBot/ArunaCore.git"
},
"author": "ArunaTeam",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ArunaBot/ArunaCore/issues"
},
"homepage": "https://github.com/ArunaBot/ArunaCore#readme",
"engines": {
"node": ">=16.20.0"
},
"dependencies": {
"@promisepending/logger.js": "^1.1.1",
"resolve": "^1.22.8",
"semver": "^7.5.4",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/module-alias": "^2.0.4",
"@types/node": "^20.10.0",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.5.6",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"archiver": "^6.0.1",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"typescript": "^5.3.2"
}
}