-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1 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": "vortex",
"version": "0.1.0",
"private": true,
"description": "Modern Habbo client renderer - Lighter than Nitro",
"scripts": {
"dev": "pnpm --filter vortex-client dev",
"build": "pnpm --filter vortex-client build",
"preview": "pnpm --filter vortex-client preview",
"imager:dev": "pnpm --filter vortex-imager dev",
"imager:build": "pnpm --filter vortex-imager build",
"imager": "pnpm --filter vortex-imager start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"sync:agents": "node scripts/sync-agent-docs.mjs --write",
"prepare": "husky"
},
"author": "Clayton",
"license": "GPL-3.0",
"dependencies": {
"vite": "^6.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"typescript-eslint": "^8.62.1"
},
"lint-staged": {
"packages/*/src/**/*.ts": [
"eslint --fix"
]
}
}