🚀 Socket Launch Week Day 4:Socket MCP Adds Org Alerts, Threat Feed Review, and Package Inspection.Learn more
Sign In

@overextended/fx-utils

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@overextended/fx-utils - npm Package Compare versions

Comparing version
0.0.4
to
0.0.6
+2
-1
dist/fxmanifest.d.ts

@@ -7,2 +7,3 @@ /**

server_scripts?: string[];
shared_scripts?: string[];
files?: string[];

@@ -17,3 +18,3 @@ dependencies?: string[];

*/
export declare function createFxmanifest({ client_scripts, server_scripts, files, dependencies, metadata, }: FxResourceManifest): Promise<string>;
export declare function createFxmanifest({ client_scripts, server_scripts, shared_scripts, files, dependencies, metadata, }: FxResourceManifest): Promise<string>;
export {};

@@ -31,3 +31,3 @@ import { readJson } from "./readJson.js";

*/
export async function createFxmanifest({ client_scripts, server_scripts, files, dependencies, metadata, }) {
export async function createFxmanifest({ client_scripts, server_scripts, shared_scripts, files, dependencies, metadata, }) {
const pkg = await readJson("package.json");

@@ -50,4 +50,5 @@ const fxmanifest = {

output += reduceArray("server_scripts", server_scripts);
output += reduceArray("shared_scripts", shared_scripts);
await writeFile("fxmanifest.lua", output);
return output;
}
{
"name": "@overextended/fx-utils",
"version": "0.0.4",
"description": "",
"version": "0.0.6",
"description": "WIP development tools when working with the Cfx platform.",
"keywords": [
"fivem",
"overextended",
"fxutils"
],
"funding": "https://ko-fi.com/thelindat",
"bugs": "https://github.com/overextended/fx-utils/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/overextended/fx-utils.git"
},
"license": "MIT",
"author": "https://github.com/thelindat/",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"bin": {
"fxdoc": "./dist/bin/fxdoc.js"
"fxdoc": "dist/bin/fxdoc.js"
},
"exports": {
".": "./dist/index.js"
},
"files": [

@@ -17,6 +30,5 @@ "./dist/**/*.js",

],
"keywords": [],
"author": "https://github.com/thelindat/",
"funding": "https://ko-fi.com/thelindat",
"license": "MIT",
"scripts": {
"prepare": "tsc"
},
"dependencies": {

@@ -29,4 +41,3 @@ "esbuild": "^0.23.1",

"typescript": "^5.6.2"
},
"scripts": {}
}
}
}