-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "@onelauncher/root",
"type": "module",
"version": "1.0.0-alpha.1",
"private": true,
"engineStrict": true,
"packageManager": "[email protected]",
"description": "Next-generation open source Minecraft launcher and tools for interacting with Polyfrost",
"license": "GPL-3.0-only",
"homepage": "https://polyfrost.org",
"repository": {
"type": "git",
"url": "[email protected]:polyfrost/onelauncher",
"directory": "/"
},
"bugs": "https://github.com/polyfrost/onelauncher/issues",
"sideEffects": false,
"engines": {
"pnpm": ">=9.0.0",
"npm": "pnpm",
"yarn": "pnpm",
"node": ">=18.18 <19 || >=20"
},
"scripts": {
"prep": "pnpm scripts prep",
"typecheck": "pnpm -r typecheck",
"bootstrap": "cargo clean && ./packages/scripts/setup.sh && pnpm install && pnpm prep && pnpm codegen",
"autoformat": "./packages/scripts/format.sh",
"test": "pnpm test:vi && pnpm --filter=./* run test",
"format": "pnpm format:es && pnpm format:rs",
"lint": "pnpm lint:es && pnpm lint:rs",
"frontend": "pnpm --filter @onelauncher/frontend -- ",
"client": "pnpm --filter @onelauncher/client -- ",
"desktop": "pnpm --filter @onelauncher/desktop -- ",
"scripts": "pnpm --filter @onelauncher/scripts -- ",
"testing": "pnpm --filter @onelauncher/testing --",
"tauri": "pnpm desktop tauri-ext",
"postupdate": "cargo update",
"----------------------": "----------------------",
"test:vi": "pnpm vitest run",
"test:update": "pnpm vitest -u",
"test:ui": "pnpm vitest --ui",
"lint:es": "eslint . --cache --flag unstable_ts_config",
"format:es": "pnpm lint:es --fix",
"lint:rs": "cargo +nightly fmt --check && cargo clippy -- -D warnings",
"format:rs": "cargo +nightly fmt && cargo clippy --fix"
},
"workspaces": {
"packages": [
"packages/*",
"apps/*"
]
},
"devDependencies": {
"@flowr/eslint-config": "^4.4.1",
"@types/node": "^22.7.9",
"@unocss/eslint-plugin": "^0.63.6",
"@vitest/ui": "^2.1.3",
"eslint": "^9.13.0",
"eslint-plugin-solid": "^0.14.3",
"jiti": "^2.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.3"
}
}