-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 845 Bytes
/
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
{
"name": "create-fivem-resource",
"version": "2.0.5",
"license": "MIT",
"repository": "https://github.com/JustinMartinDev/create-fivem-resource",
"homepage": "https://create-fivem-resource.dev",
"keywords": [
"fivem",
"resource",
"nui",
"citizenfx",
"cli"
],
"bin": {
"create-fivem-resource": "./dist/src/index.js"
},
"files": [
"dist"
],
"scripts": {
"start": "ts-node src/index.ts",
"prebuild": "rm -rf dist",
"build": "tsc --project tsconfig.json"
},
"dependencies": {
"@types/lodash": "^4.17.7",
"chalk": "^4",
"commander": "^12.1.0",
"inquirer": "^10.1.2",
"lodash": "^4.17.21",
"prompts": "^2.4.2",
"simple-git": "^3.25.0"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}