-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
58
{
"name": "@nativewrappers/fivem-server",
"version": "0.0.5",
"description": "Javascript/Typescript wrapper for the FiveM Server natives",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"ci": "pnpm run lint && pnpm run build",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint --fix . --ext .ts",
"typedoc": "typedoc",
"docs": "npm run typedoc -- --options typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nativewrappers/fivem-server.git"
},
"keywords": [
"fivem",
"wrapper",
"javascript",
"typescript",
"citizenfx"
],
"files": [
"lib/**/*"
],
"author": "Dillon Skaggs <AvarianKnight>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nativewrappers/fivem-server/issues"
},
"homepage": "https://fivemjs-server.avarian.dev/",
"devDependencies": {
"@citizenfx/server": "2.0.6086-1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.8.0",
"typedoc": "^0.23.21",
"typedoc-fivemjs-theme": "^0.2.7",
"typescript": "^4.9.3",
"eslint-scope": "^7.1.1",
"eslint-utils": "^3.0.0",
"eslint-visitor-keys": "^3.3.0",
"prettier-linter-helpers": "^1.0.0"
},
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib"
}
}