This repository has been archived by the owner on Oct 27, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
138 lines (138 loc) · 4.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@natunaorg/fivem",
"version": "1.5.0",
"description": "FiveM Typescript/Javascript Bundled Framework with single module engine that runs on Javascript runtime. Powered with NodeJS.",
"homepage": "https://fivem.natuna.runes.asia",
"license": "MIT",
"private": false,
"main": "src/",
"packageManager": "[email protected]",
"repository": {
"url": "https://github.com/natuna-framework/natuna",
"type": "git"
},
"author": {
"name": "Runes",
"email": "[email protected]",
"url": "https://runes.asia"
},
"maintainers": [
{
"name": "Rafly Maulana",
"email": "[email protected]",
"url": "https://raflymaulana.me"
}
],
"scripts": {
"build": "node .natuna/esbuild.js",
"build:prod": "yarn build --mode=production",
"dev": "yarn build --watch",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "yarn lint --fix",
"db:create-schema": "node .natuna/scripts/db/create-schema.js",
"db:migrate": "node .natuna/scripts/db/migrate.js",
"db:setup": "yarn db:create-schema && yarn db:migrate"
},
"dependencies": {
"@citizenfx/client": "^2.0.4358-1",
"@citizenfx/server": "^2.0.4249-1",
"@ptkdev/logger": "^1.8.0",
"dotenv": "^16.0.0",
"esbuild": "^0.14.12",
"mysql2": "^2.3.3",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^17.0.10",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"optionalDependencies": {
"@wearerunes/typedoc-plugin": "^1.0.4",
"typedoc": "^0.22.12",
"typedoc-plugin-mdn-links": "^1.0.5",
"typedoc-plugin-merge-modules": "^3.1.0",
"typedoc-plugin-reference-excluder": "^1.0.0"
},
"peerDependencies": {
"typedoc": "^0.22.12"
},
"prettier": {
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "auto",
"htmlWhitespaceSensitivity": "css",
"bracketSameLine": true,
"jsxSingleQuote": false,
"printWidth": 200,
"semi": true,
"tabWidth": 4
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"prettier",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
},
"env": {
"browser": true,
"node": true
},
"rules": {
"no-case-declarations": "off",
"no-empty-function": "off",
"prefer-const": "off",
"prettier/prettier": "error",
"react/no-unescaped-entities": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"natuna": {
"whitelisted": true,
"game": {
"autoRespawnDisabled": false,
"noDispatchService": false,
"noWantedLevel": true,
"pauseMenuTitle": "Natuna Indonesia | discord.gg/kGPHBvXzGM"
},
"discordRPC": {
"text": "Playing on Natuna Indonesia",
"appId": "866690121485910017",
"refreshInterval": 30,
"largeImage": {
"assetName": "logo",
"hoverText": "Natuna Framework"
},
"smallImage": {
"assetName": "indonesia",
"hoverText": "Made in Indonesia"
},
"buttons": [
{
"label": "Discord",
"url": "https://discord.gg/kGPHBvXzGM"
},
{
"label": "GitHub",
"url": "fivem://connect/aasd.com/asdasd"
}
]
}
}
}