-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.32 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.32 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
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
{
"name": "@onelauncher/root",
"type": "module",
"version": "1.1.4",
"private": true,
"engineStrict": true,
"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": "git@github.com:polyfrost/onelauncher",
"directory": "/"
},
"bugs": "https://github.com/polyfrost/onelauncher/issues",
"sideEffects": false,
"engines": {
"pnpm": ">=10.0.0",
"npm": "pnpm",
"yarn": "pnpm",
"node": ">=22"
},
"scripts": {
"prep": "pnpm scripts prep",
"version:bump": "pnpm scripts version",
"merge-releases": "pnpm scripts merge-releases",
"typecheck": "pnpm -r typecheck",
"bootstrap": "cargo clean && ./packages/scripts/setup.sh && pnpm install && pnpm prep",
"core": "pnpm --filter @onelauncher/core -- ",
"migrate": "sea-orm-cli migrate -d ./packages/migration",
"entity:gen": "sea-orm-cli generate entity -o packages/entity/src/entities --with-serde both --model-extra-attributes 'onelauncher_macro::specta' -t",
"onelauncher:frontend": "pnpm --filter @onelauncher/frontend -- ",
"onelauncher:desktop": "pnpm --filter @onelauncher/desktop -- ",
"oneclient:frontend": "pnpm --filter @oneclient/frontend -- ",
"oneclient:desktop": "pnpm --filter @oneclient/desktop -- ",
"web_common": "pnpm --filter @onelauncher/common -- ",
"scripts": "pnpm --filter @onelauncher/scripts -- ",
"format": "pnpm format:es && pnpm format:rs",
"format:es": "pnpm lint:apps:es --fix && pnpm lint:packages:es --fix",
"format:rs": "cargo +nightly fmt && cargo clippy --fix",
"lint": "pnpm lint:es && pnpm lint:rs",
"lint:es": "pnpm lint:apps:es && pnpm lint:packages:es",
"lint:apps:es": "pnpm exec eslint apps/ --cache",
"lint:packages:es": "pnpm exec eslint packages/ --cache",
"lint:rs": "cargo +nightly fmt --check && cargo clippy -- -D warnings",
"prepare": "husky"
},
"workspaces": {
"packages": [
"packages/*",
"apps/*"
]
},
"devDependencies": {
"@eslint-react/eslint-plugin": "catalog:",
"@flowr/eslint": "catalog:",
"@tanstack/eslint-config": "catalog:",
"@types/node": "catalog:",
"eslint": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"rimraf": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vite": "catalog:"
}
}