-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.97 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "kaya",
"version": "0.4.8-dev",
"private": true,
"type": "module",
"description": "Free, open-source Go (Baduk/Weiqi) application with AI analysis (KataGo), board recognition from photos, SGF support, and game tree navigation",
"keywords": [
"go",
"baduk",
"weiqi",
"sgf",
"game-tree",
"go-game",
"board-game",
"tauri",
"react",
"typescript",
"desktop-app",
"pwa",
"cross-platform",
"katago",
"ai-analysis",
"board-recognition",
"onnx"
],
"homepage": "https://kayago.app",
"repository": {
"type": "git",
"url": "https://github.com/kaya-go/kaya.git"
},
"bugs": {
"url": "https://github.com/kaya-go/kaya/issues"
},
"license": "AGPL-3.0",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "bun run tauri:dev",
"dev:web": "bun run generate-version-info && bun run copy-assets && bun run build:packages && bun --filter @kaya/web dev",
"dev:desktop": "bun run generate-version-info && bun run tauri:dev",
"build": "bun run build:desktop",
"build:web": "bun run generate-version-info && bun run generate-pwa-assets && bun run copy-assets && bun run build:packages && bun --filter @kaya/web build",
"build:web:app": "bun --filter @kaya/web build",
"build:desktop": "bun run generate-version-info && bun run copy-assets && bun run build:packages && bun --filter @kaya/desktop build",
"build:desktop:app": "bun --filter @kaya/desktop build",
"build:packages": "bun run --filter @kaya/goboard build && bun run --filter @kaya/sgf build && bun run --filter @kaya/gametree build && bun run --filter @kaya/boardmatcher build && bun run --filter @kaya/deadstones build && bun run --filter @kaya/ai-engine build && bun run --filter @kaya/shudan build && bun run --filter @kaya/board-recognition build && bun run --filter @kaya/i18n build && bun run --filter @kaya/themes build && bun run --filter @kaya/game-library build && bun run --filter @kaya/platform build && bun run --filter @kaya/ui build",
"tauri:dev": "bun --filter @kaya/desktop tauri dev",
"tauri:build": "bun --filter @kaya/desktop tauri build",
"tauri:check": "bun --filter @kaya/desktop tauri:check",
"android:setup": "bun --filter @kaya/desktop android:setup",
"android:dev": "bun --filter @kaya/desktop android:dev",
"android:build": "bun --filter @kaya/desktop android:build",
"generate-version-info": "bun run scripts/generate-version-info.ts",
"copy-assets": "bun run scripts/copy-assets.ts",
"generate-icons": "bun run scripts/generate-icons.ts",
"generate-pwa-assets": "bun run scripts/generate-pwa-assets.ts",
"generate-updater-json": "bun run scripts/generate-updater-json.ts",
"format": "prettier --write . && markdownlint --fix '**/*.md' --ignore node_modules",
"format:check": "prettier --check . && markdownlint '**/*.md' --ignore node_modules",
"type-check": "bun run --filter='*' type-check",
"test": "bun test --recursive",
"test:unit": "bun test --recursive",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:e2e:desktop": "playwright test --config=playwright.desktop.config.ts",
"test:e2e:desktop:headed": "playwright test --config=playwright.desktop.config.ts --headed",
"test:e2e:desktop:ui": "playwright test --config=playwright.desktop.config.ts --ui",
"clean": "rm -rf packages/*/dist apps/*/dist node_modules/.cache && echo '✅ Build artifacts cleared'",
"set-version": "bun run scripts/set-version.ts",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/bun": "latest",
"@types/sharp": "^0.32.0",
"bun-types": "^1.3.10",
"git-cliff": "^2.12.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"markdownlint-cli": "^0.49.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"sharp": "^0.35.3",
"typescript": "^7.0.2"
},
"packageManager": "bun@1.3.10"
}