-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
40 lines (40 loc) · 1.17 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
36
37
38
39
40
{
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"@lemaik/qrcode-svg": "^1.2.0",
"libmuse": "^0.1.1",
"lodash-es": "^4.17.21",
"path-to-regexp": "^8.1.0",
"web-streams-polyfill": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/core-js": "^2.5.8",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "^4.17.12",
"core-js": "^3.35.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"event-target-polyfill": "^0.0.4",
"headers-polyfill": "^4.0.2",
"minimist": "^1.2.8",
"prettier": "3.3.3",
"typescript": "^5.5.3",
"typescript-eslint": "^8.6.0"
},
"scripts": {
"build": "node lib/build.js",
"typecheck": "tsc --strict --noEmit",
"generate-sources": "flatpak-node-generator yarn yarn.lock -o build-aux/flatpak/modules/yarn-deps-sources.json",
"lint": "yarn eslint src"
}
}