upd (fw): versions bump + configs

This commit is contained in:
2025-01-28 14:35:38 +00:00
parent b55204ee61
commit 47375c0a15
15 changed files with 262 additions and 436 deletions
+6 -3
View File
@@ -14,12 +14,15 @@
"build": "tsup"
},
"dependencies": {
"@entityseven/rage-fw-rpc": "0.2.5",
"zod": "^3.23.8"
"@entityseven/rage-fw-rpc": "0.2.5"
},
"devDependencies": {
"@types/node": "catalog:"
},
"peerDependencies": {
"@entityseven/rage-fw-shared-types": "0.2.0",
"@ragempcommunity/types-cef": "^2.1.8"
"@ragempcommunity/types-cef": "catalog:",
"typescript": "^5"
},
"description": "Package used on a browser-side of your Rage:MP Server",
"keywords": [
+2 -1
View File
@@ -20,6 +20,7 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"types": ["./node_modules/@ragempcommunity/types-cef/index.d.ts", "node"]
}
}
+2 -2
View File
@@ -1,12 +1,12 @@
import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['src/index.ts'],
entry: ['src/**/*.ts'],
outDir: './dist',
format: ['cjs'],
noExternal: ['rage-rpc'],
experimentalDts: true,
splitting: false,
bundle: false,
sourcemap: false,
clean: true,
})