This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.44 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "fivem-resource-cli",
"version": "2.0.5",
"description": "This is a FiveM resource CLI made to make it easier for people to create their own resources.",
"type": "module",
"bin": {
"fivemresource": "dist/index.cjs",
"frc": "dist/index.cjs"
},
"scripts": {
"build": "node build.cjs",
"format:check": "eslint && prettier -c .",
"format:write": "eslint --fix && prettier -w .",
"lint:check": "pnpm format:check",
"lint:write": "pnpm format:write",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Z3rio/fivem-resource-cli.git"
},
"keywords": [
"fivem",
"cli",
"resource",
"qbcore",
"esx",
"react",
"svelte",
"vue"
],
"author": "Zerio",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Z3rio/fivem-resource-cli/issues"
},
"homepage": "https://github.com/Z3rio/fivem-resource-cli#readme",
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"minimist": "^1.2.8",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
}
}