-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "veil",
"version": "0.0.0",
"description": "Self hosted cloud gaming platform",
"author": "Gintautas Kazlauskas <g@veil.gg>",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "echo \"Cleaning Rust artifacts...\" && pnpm rust-clean && echo \"Cleaning module artifacts...\" && pnpm run clean-proto && pnpm run clean-client && pnpm run clean-sdk",
"clean-proto": "cd modules/proto && rm -rf gen",
"clean-client": "cd modules/client && rm -rf dist node_modules/.vite",
"clean-sdk": "cd modules/sdk && rm -rf dist",
"rust-clean": "cargo clean && rm -rf target"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.18.0",
"@eslint/json": "^0.10.0",
"concurrently": "^8.2.2",
"conventional-changelog-atom": "^5.0.0",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"prettier": "3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"packageManager": "pnpm@9.1.0",
"dependencies": {
"tsx": "^4.19.2"
}
}