upd (fw):

- fixed import names for client/server
- added "access": "public" field for fw packages
This commit is contained in:
2025-01-30 19:52:19 +00:00
parent edafb5289e
commit a820e9896b
6 changed files with 21 additions and 11 deletions
+8 -1
View File
@@ -3,9 +3,16 @@
"name": "@entityseven/rage-fw-rpc",
"version": "0.2.5",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"types": "dist/index.d.ts"
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",