-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@lenixdev/fusion",
"version": "1.1.0",
"description": "Bundle of UI helpers for players interaction",
"author": "Lenix",
"license": "GPL-3.0",
"keywords": [
"fivem",
"lenix",
"fusion",
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/lenixdev/lenix_fusion"
},
"exports": {
"./nui": "./nui/index.js"
},
"files": [
"nui",
"README.md"
],
"scripts": {
"patch": "npm run rebuild && npm version patch && npm publish",
"minor": "npm run rebuild && npm version minor && npm publish",
"rebuild": "rmdir /s /q nui 2>nul & npm run build",
"reinstall": "rimraf package-lock.json node_modules/.package-lock.json && npm install",
"build": "npm run build:nui",
"build:nui": "npx tsc -p src/nui/tsconfig.json"
},
"devDependencies": {
"esbuild": "^0.20.0",
"@citizenfx/client": "^2.0.23683-1",
"@citizenfx/server": "^2.0.23683-1",
"typescript": "^5.0.0",
"@trippler/tr_lib": "latest",
"@trippler/tr_kit": "latest",
"rimraf": "^6.0.1"
}
}