-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 826 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "yabosfivemrpc",
"version": "0.1.1",
"description": "A secure, Promise-based RPC library for FiveM TypeScript/JavaScript resources.",
"type": "module",
"license": "Unlicense",
"author": "yaboia",
"keywords": ["fivem", "cfx", "rpc", "typescript", "nui"],
"files": ["dist", "README.md", "LICENSE"],
"exports": {
"./server": { "types": "./dist/server.d.ts", "import": "./dist/server.js" },
"./client": { "types": "./dist/client.d.ts", "import": "./dist/client.js" },
"./browser": { "types": "./dist/browser.d.ts", "import": "./dist/browser.esm.js" }
},
"scripts": {
"build": "node build.mjs",
"check": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run check && npm run build"
},
"devDependencies": {
"esbuild": "^0.28.0",
"typescript": "^5.8.3"
}
}