@dcl/hammurabi-server 1.0.0-17268510028.commit-650bd27 → 1.0.0-17433232455.commit-1da764c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/cli.js +37 -18
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/decentraland/communications/connect-adapter.js.map +1 -1
- package/dist/worker-bundle.cjs +21833 -0
- package/dist/worker-bundle.cjs.map +7 -0
- package/package.json +17 -6
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/hammurabi-server",
|
|
3
|
-
"version": "1.0.0-
|
|
4
|
-
"main": "dist/
|
|
3
|
+
"version": "1.0.0-17433232455.commit-1da764c",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": "./dist/index.js",
|
|
7
|
+
"./cli": "./dist/cli.js",
|
|
8
|
+
"./worker": "./dist/worker-bundle.cjs"
|
|
9
|
+
},
|
|
5
10
|
"repository": {
|
|
6
11
|
"type": "git",
|
|
7
|
-
"url": "git+ssh://git@github.com/decentraland/hammurabi-
|
|
12
|
+
"url": "git+ssh://git@github.com/decentraland/hammurabi-headless.git"
|
|
8
13
|
},
|
|
9
14
|
"author": "Protocol Squad",
|
|
10
15
|
"license": "Apache-2.0",
|
|
@@ -13,9 +18,14 @@
|
|
|
13
18
|
},
|
|
14
19
|
"scripts": {
|
|
15
20
|
"start": "node dist/cli.js --realm=localhost:8000",
|
|
16
|
-
"build": "tsc",
|
|
21
|
+
"build": "npm run build:tsc && npm run build:esbuild",
|
|
22
|
+
"build:tsc": "tsc",
|
|
23
|
+
"build:esbuild": "node esbuild.config.js",
|
|
24
|
+
"build:worker": "node esbuild.config.js",
|
|
25
|
+
"build:production": "NODE_ENV=production npm run build",
|
|
26
|
+
"build:worker:production": "NODE_ENV=production node esbuild.config.js",
|
|
17
27
|
"test": "jest",
|
|
18
|
-
"prepublishOnly": "npm run build"
|
|
28
|
+
"prepublishOnly": "npm run build:production"
|
|
19
29
|
},
|
|
20
30
|
"prettier": {
|
|
21
31
|
"semi": false,
|
|
@@ -63,9 +73,10 @@
|
|
|
63
73
|
"@types/jest": "^29.5.0",
|
|
64
74
|
"@types/node": "^20.0.0",
|
|
65
75
|
"@types/ws": "^8.5.5",
|
|
76
|
+
"esbuild": "^0.25.9",
|
|
66
77
|
"jest": "^29.5.0",
|
|
67
78
|
"ts-jest": "^29.1.0",
|
|
68
79
|
"typescript": "^5.0.4"
|
|
69
80
|
},
|
|
70
|
-
"commit": "
|
|
81
|
+
"commit": "1da764c5cdba095dbead8885b676dc97009d53e4"
|
|
71
82
|
}
|