forked from d0p3t/fivem-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "fivem-js",
"version": "1.5.1",
"description": "Javascript/Typescript wrapper for the FiveM natives",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"typedoc": "typedoc",
"docs": "npm run typedoc -- --options typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d0p3t/fivem-js.git"
},
"keywords": [
"fivem",
"wrapper",
"javascript",
"typescript",
"citizenfx"
],
"files": [
"lib/**/*"
],
"author": "Remco Troost <d0p3t>",
"license": "MIT",
"bugs": {
"url": "https://github.com/d0p3t/fivem-js/issues"
},
"homepage": "https://d0p3t.nl",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"prettier": "^2.2.1",
"typedoc": "^0.19.2",
"typedoc-fivemjs-theme": "^0.2.7",
"typescript": "^4.1.2"
},
"dependencies": {
"@citizenfx/client": "^1.0.3281-1"
}
}