-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.3 KB
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
{
"name": "fivem-devops-toolkit",
"version": "0.0.1-alpha",
"private": true,
"description": "Framework-agnostic development operations suite for FiveM server development",
"homepage": "https://github.com/MetaGrenade/DevOpsKit",
"repository": {
"type": "git",
"url": "git+https://github.com/MetaGrenade/DevOpsKit.git"
},
"bugs": {
"url": "https://github.com/MetaGrenade/DevOpsKit/issues"
},
"license": "(AGPL-3.0-or-later OR SEE LICENSE IN LICENSE)",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel --filter=!@fdt/devtools-nui",
"dev:nui": "pnpm --filter @fdt/devtools-nui dev",
"dev:clean": "npx --yes kill-port 3001 5173 5174 5175",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md,yml,yaml}\"",
"fdt": "node apps/cli/dist/index.js"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@fdt/cli": "workspace:*",
"eslint": "^9.22.0",
"prettier": "^3.5.3",
"turbo": "^2.5.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"vitest": "^3.0.9"
},
"packageManager": "pnpm@10.17.0"
}