-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 893 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 893 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@overextended/fx-utils",
"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"
},
"files": [
"./dist/**/*.js",
"./dist/**/*.d.ts"
],
"scripts": {
"prepare": "tsc"
},
"dependencies": {
"esbuild": "^0.23.1",
"tsc-alias": "^1.8.10"
},
"devDependencies": {
"@types/node": "^20.16.5",
"typescript": "^5.6.2"
}
}