-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.21 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": "luna",
"version": "1.16.6-beta",
"description": "A client mod for the Tidal music app for plugins",
"author": {
"name": "Inrixia",
"url": "https://github.com/Inrixia"
},
"homepage": "https://github.com/Inrixia/TidaLuna",
"repository": {
"type": "git",
"url": "https://github.com/Inrixia/TidaLuna.git"
},
"type": "module",
"main": "./injector.mjs",
"exports": {
".": {
"types": "./luna.d.ts"
},
"./build": "./build/index.ts",
"./buildPlugins": "./build/buildPlugins.ts",
"./tsconfig.json": "./tsconfig.json"
},
"scripts": {
"format": "prettier -wc ./src",
"watch": "rimraf ./dist && tsx ./esbuild.config.ts --watch",
"build": "rimraf ./dist && tsx ./esbuild.config.ts"
},
"license": "MS-Pl",
"devDependencies": {
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"tsx": "^4.23.12",
"typescript": "^7.0.2"
},
"dependencies": {
"@inrixia/helpers": "^3.21.2",
"@types/clean-css": "^4.2.11",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^26.2.0",
"clean-css": "^5.3.3",
"esbuild": "^0.28.2",
"html-minifier-terser": "^7.2.0"
}
}