forked from Bitcoindefi/OpenAO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.8 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
{
"name": "argentumonlineweb_server",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"dependencies": {
"axios": "^1.16.1",
"bytebuffer": "^5.0.1",
"https": "^1.0.0",
"lodash": "^4.18.1",
"ws": "^8.20.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/lodash": "^4.17.17",
"@types/node": "^25.8.0",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"tsx": "^4.22.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"scripts": {
"clean": "rm -rf dist",
"build": "pnpm run clean && tsc && node scripts/copy-assets.cjs",
"dev": "NODE_ENV=development tsx watch src/server.ts",
"compact-objs": "tsx src/scripts/compactObjsJson.ts",
"compact-npcs": "tsx src/scripts/compactNpcsJson.ts",
"export-editable-maps": "tsx src/scripts/exportEditableMaps.ts",
"export-frontend-graphics": "tsx src/scripts/exportFrontendOptimizedGraphics.ts",
"export-frontend-maps": "tsx src/scripts/exportFrontendOptimizedMaps.ts",
"export-client-objs": "tsx src/scripts/exportClientObjs.ts",
"start": "node dist/server.js",
"lint": "eslint './src/**/*.ts'",
"world-map": "node scripts/build-world-map.cjs",
"compare-original-data": "tsx src/scripts/compareOriginalData.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:dcatanzaro/argentumonlineweb-cliente.git"
},
"author": "Damián Catanzaro",
"license": "ISC",
"bugs": {
"url": "https://github.com/dcatanzaro/argentumonlineweb-servidor/issues"
},
"homepage": "https://github.com/dcatanzaro/argentumonlineweb-servidor/blob/master/README.md"
}