-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.56 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
59
60
61
{
"name": "@project-error/pe-utils",
"version": "0.3.0",
"description": "A collection of v8 specific FiveM utilities",
"main": "lib/index.js",
"scripts": {
"format": "prettier --write .",
"clean": "rimraf lib",
"npm:publish": "yarn build && yarn publish",
"build": "yarn clean && tsc --build src/tsconfig.json",
"dev": "yarn clean && tsc --build src/tsconfig.json --watch",
"docs:gen": "typedoc",
"docs:server": "http-server docs",
"semantic-release": "semantic-release"
},
"files": [
"lib/**/*"
],
"keywords": [
"fivem",
"typescript",
"gta",
"v8",
"utilities"
],
"author": "Project Error",
"license": "MIT",
"devDependencies": {
"@citizenfx/client": "2.0.5230-1",
"@citizenfx/server": "2.0.5230-1",
"@types/eslint": "8.2.2",
"@types/node": "17.0.9",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"http-server": "14.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"semantic-release": "^19.0.3",
"typedoc": "0.22.11",
"typescript": "4.5.4"
},
"release": {
"branches": [
"master",
"next"
]
},
"repository": {
"type": "git",
"url": "https://github.com/project-error/pe-utils.git"
},
"bugs": {
"url": "https://github.com/project-error/pe-utils/issues"
},
"homepage": "https://github.com/project-error/pe-utils#readme"
}