-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "altv-slots",
"version": "1.0.0",
"description": "alt:V Slots",
"scripts": {
"update": "altv-pkg d release",
"build": "node ./scripts/compiler.js && node ./scripts/copy.js",
"windows": "npm run build && altv-server.exe",
"linux": "npm run build && ./altv-server",
"dev": "node ./scripts/watch.js"
},
"author": "dGxxxx",
"devDependencies": {
"@altv/types-client": "^15.0.9",
"@altv/types-natives": "^15.0.8",
"@altv/types-server": "^15.0.8",
"@altv/types-shared": "^15.0.8",
"@altv/types-webview": "^15.0.8",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.95",
"@types/node": "^20.8.8",
"altv-pkg": "^2.6.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"typescript": "latest",
"watcher": "^2.3.0"
},
"prettier": {
"tabWidth": 4,
"semi": true,
"printWidth": 120,
"arrowParens": "always",
"singleQuote": true
},
"type": "module",
"dependencies": {
"fkill": "^8.1.1",
"toml": "^3.0.0"
}
}