-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "frs-manager",
"version": "2.0.6",
"description": "This is a CLI made for simplifying the process of creating & managing resources.",
"type": "module",
"bin": {
"fivemresource": "dist/index.cjs",
"frc": "dist/index.cjs",
"frs": "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/frs-manager.git"
},
"keywords": [
"fivem",
"cli",
"resource",
"qbcore",
"esx",
"react",
"svelte",
"vue"
],
"author": "Zerio",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Z3rio/frs-manager/issues"
},
"homepage": "https://github.com/Z3rio/frs-manager#readme",
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"minimist": "^1.2.8",
"picocolors": "^1.1.1",
"zod": "^3.23.8"
},
"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"
}
}