forked from vixalien/muzika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "muzika",
"version": "1.0.0",
"description": "An elegant music streaming app",
"main": "src/main.ts",
"type": "module",
"repository": "https://github.com/vixalien/muzika",
"author": "Angelo Verlain <hey@vixalien.com>",
"license": "MIT",
"dependencies": {
"@lemaik/qrcode-svg": "^1.2.0",
"libmuse": "^0.0.56",
"lodash-es": "^4.17.21",
"path-to-regexp": "^6.2.1",
"typescript": "^5.1.6",
"web-streams-polyfill": "^3.2.1"
},
"devDependencies": {
"@types/core-js": "^2.5.5",
"@types/lodash-es": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"core-js": "^3.31.0",
"esbuild": "^0.18.10",
"eslint": "^8.43.0",
"event-target-polyfill": "^0.0.3",
"headers-polyfill": "^3.1.2",
"minimist": "^1.2.8"
},
"scripts": {
"build": "node lib/build.js",
"typecheck": "tsc --strict --noEmit",
"generate-sources": "flatpak-node-generator yarn yarn.lock && mv generated-sources.json build-aux/flatpak/"
}
}