-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.74 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
{
"name": "akagi-ng-root",
"private": true,
"version": "1.0.8",
"description": "Akagi-NG is a next-generation rewrite inspired by Akagi and MajsoulHelper, focusing on modern architecture and UI.",
"author": "Akagi-NG Contributors",
"license": "AGPL-3.0",
"engines": {
"node": ">=24.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Xe-Persistent/Akagi-NG.git"
},
"workspaces": [
"akagi_frontend",
"electron"
],
"scripts": {
"dev": "concurrently -k \"npm run dev -w akagi-frontend\" \"npm run dev -w akagi-ng-desktop\"",
"dev:mock": "concurrently -k \"tsx scripts/mock_server.ts\" \"npm run dev -w akagi-frontend\" \"npm run dev:mock -w akagi-ng-desktop\"",
"clean": "tsx scripts/clean.ts",
"sync-version": "tsx scripts/sync_version.ts",
"prepare-release": "tsx scripts/prepare_release.ts",
"build:backend": "tsx scripts/build_backend.ts",
"build": "npm run clean && npm run sync-version && npm run build -w akagi-frontend && npm run build:backend && npm run build -w akagi-ng-desktop && npm run prepare-release && npm run package -w akagi-ng-desktop",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "npm exec --workspaces -- tsc --noEmit --pretty"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^5.6.0",
"@eslint/js": "^10.0.1",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
}
}