-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 956 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
40
41
42
43
{
"name": "cfx-api",
"version": "1.2.31",
"descrption": "JS library to interact with the Cfx.re API",
"main": "dist/index.js",
"author": "PABLO-1610",
"scripts": {
"lint": "eslint . --ext .ts",
"compile": "tsc -p ./tsconfig.json",
"watch": "tsc -w -p ./tsconfig.json",
"test": "jest"
},
"keywords": [
"fivem",
"api",
"node",
"fivem-api",
"cfx",
"cfx-api",
"cfx.re"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pablo-1610/cfx-api.git"
},
"bugs": {
"url": "https://github.com/pablo-1610/cfx-api/issues"
},
"license": "ISC",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}