-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
167 lines (167 loc) · 6.87 KB
/
package.json
File metadata and controls
167 lines (167 loc) · 6.87 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "oyasumi",
"version": "25.6.12",
"author": "Raphiiko",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "npm run tauri dev -- -- -- --core-mode dev --overlay-sidecar-mode dev",
"start": "npm run tauri dev",
"start:ui": "node scripts/pre-build.js && ng serve",
"start:overlay": "cd src-overlay-sidecar && dotnet build && dotnet run -- dev",
"start:overlay-ui": "cd src-overlay-ui && npm run dev",
"build": "run-s build:core",
"build:core": "npm run tauri build",
"build:pre": "node scripts/pre-build.js && run-p build:front build:sidecars",
"build:front": "ng build",
"build:sidecars": "npm run build:sidecar",
"build:sidecar": "run-p build:sidecar:elevated build:sidecar:overlay",
"build:sidecar:elevated": "run-s build:sidecar:elevated:core build:sidecar:elevated:post",
"build:sidecar:elevated:core": "cd src-elevated-sidecar && cargo build --release && cd ..",
"build:sidecar:elevated:post": "node scripts/elevated-sidecar-post-build.js",
"build:sidecar:overlay": "rimraf src-core/resources/overlay-sidecar && run-p build:sidecar:overlay:ui build:sidecar:overlay:core && run-s build:sidecar:overlay:post",
"build:sidecar:overlay:ui": "cd src-overlay-ui && npm run build && cd ..",
"build:sidecar:overlay:core": "cd src-overlay-sidecar && dotnet publish -r win-x64 -c Release && cd ..",
"build:sidecar:overlay:post": "node scripts/overlay-sidecar-post-build.js",
"format": "run-s format:eslint format:prettier",
"format:eslint": "eslint --no-error-on-unmatched-pattern --fix \"src-ui/**/*.ts\" \"src-shared-ts/**/*.ts\" \"src-overlay-ui/**/*.ts\" \"scripts/**/*.ts\"",
"format:prettier": "prettier --write \"src-ui/**/*.{svelte,html,css,scss,js,ts}\" \"src-shared-ts/**/*.{svelte,html,css,scss,js,ts}\" \"src-overlay-ui/**/*.{svelte,html,css,scss,js,ts}\" \"scripts/**/*.{svelte,html,css,scss,js,ts}\"",
"set-version": "node scripts/set-version.js",
"set-flavour": "node scripts/set-flavour.js",
"set-build-id": "node scripts/set-build-id.js",
"generate:readmes": "node scripts/readme-generator.js",
"tauri": "tauri",
"ng": "ng",
"lint": "ng lint",
"tl": "node scripts/translation-utils.js",
"clean": "rimraf dist && rimraf src-overlay-sidecar/bin && rimraf src-overlay-sidecar/obj && rimraf src-overlay-ui/build && rimraf src-elevated-sidecar/target && rimraf src-core/target && rimraf src-shared-rust/target && rimraf src-core/resources/elevated-sidecar && rimraf src-core/resources/overlay-sidecar && rimraf src-core/resources/fonts",
"generate:grpc-web-client": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./scripts/ts-proto-gen.ps1 && prettier --loglevel silent --write src-grpc-web-client/**/*",
"postinstall": "cd src-overlay-ui && npm install && cd ..",
"init": "npm install && node scripts/init.js",
"ci": "npm ci && node scripts/init.js"
},
"private": true,
"dependencies": {
"@angular/animations": "~20.3.14",
"@angular/common": "~20.3.14",
"@angular/compiler": "~20.3.14",
"@angular/core": "~20.3.14",
"@angular/forms": "~20.3.14",
"@angular/platform-browser": "~20.3.14",
"@angular/platform-browser-dynamic": "~20.3.14",
"@angular/router": "~20.3.14",
"@aptabase/tauri": "github:aptabase/tauri-plugin-aptabase",
"@fontsource/fira-code": "^5.2.7",
"@fontsource/noto-sans-jp": "^5.2.8",
"@fontsource/noto-sans-kr": "^5.2.8",
"@fontsource/noto-sans-sc": "^5.2.8",
"@fontsource/noto-sans-tc": "^5.2.8",
"@fontsource/poppins": "^5.2.7",
"@fortawesome/fontawesome-free": "^7.1.0",
"@messageformat/core": "^3.4.0",
"@ngx-translate/core": "^16.0.4",
"@ngx-translate/http-loader": "^16.0.1",
"@protobuf-ts/grpc-transport": "^2.11.1",
"@protobuf-ts/grpcweb-transport": "^2.11.1",
"@protobuf-ts/runtime": "^2.11.1",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.5",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
"@tauri-apps/plugin-http": "^2.5.4",
"@tauri-apps/plugin-log": "^2.7.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tauri-apps/plugin-store": "^2.4.1",
"@tauri-apps/plugin-updater": "^2.9.0",
"chart.js": "^4.5.1",
"chartjs-adapter-moment": "^1.0.1",
"colorjoe": "^4.2.0",
"cookie": "^1.1.1",
"eslint-plugin-json": "^4.0.1",
"flag-icons": "^7.5.0",
"fuse.js": "^7.1.0",
"lodash": "^4.17.21",
"marked": "^17.0.1",
"material-colors": "^1.2.6",
"material-icons": "^1.13.14",
"material-symbols": "^0.40.0",
"moment": "^2.30.1",
"mqtt": "^5.14.1",
"ngx-moment": "^6.0.2",
"ngx-pipes": "^3.2.2",
"ngx-translate-messageformat-compiler": "7.2.0",
"p-min-delay": "^4.2.0",
"rxjs": "^7.8.2",
"set-cookie-parser": "^2.7.2",
"src-shared-ts": "file:src-shared-ts",
"three": "^0.181.2",
"tslib": "^2.8.1",
"typescript-debounce-decorator": "^0.0.18",
"uplot": "^1.6.32",
"uuid": "^13.0.0",
"vrchat": "github:Raphiiko/vrchatapi-javascript#oyasumi-patch",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-eslint/builder": "^20.1.1",
"@angular-eslint/eslint-plugin": "^20.1.1",
"@angular-eslint/eslint-plugin-template": "^20.1.1",
"@angular-eslint/schematics": "^20.1.1",
"@angular-eslint/template-parser": "^20.1.1",
"@angular/build": "~20.3.12",
"@angular/cli": "~20.3.12",
"@angular/compiler-cli": "~20.3.14",
"@protobuf-ts/plugin": "^2.11.1",
"@tauri-apps/cli": "^2.9.4",
"@types/cookie": "^1.0.0",
"@types/lodash": "^4.17.21",
"@types/marked": "^6.0.0",
"@types/node": "^24.10.1",
"@types/set-cookie-parser": "^2.4.10",
"@types/three": "^0.181.0",
"@types/uuid": "^11.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"blurhash": "^2.0.5",
"blurhash-to-css": "^0.5.5",
"check-more-types": "^2.24.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.3.0",
"json-to-css": "^0.1.0",
"mkdirp": "^3.0.1",
"music-metadata": "11.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.3",
"prettier-plugin-svelte": "^3.4.0",
"recursive-copy": "^2.0.14",
"rimraf": "^6.1.2",
"sharp": "^0.34.5",
"typescript": "^5.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,js}": [
"ng-lint-staged lint --fix --",
"prettier --write",
"git add"
],
"*.{html,scss,md,html,yml,json}": [
"prettier --write",
"git add"
]
},
"overrides": {
"axios": "^1.7.8"
}
}