36 lines
1.1 kB
1
{
2
"name": "moonlight",
3
"version": "1.3.6",
4
"description": "Yet another Discord mod",
5
"homepage": "https://moonlight-mod.github.io/",
6
"license": "LGPL-3.0-or-later",
7
"repository": {
8
"type": "git",
9
"url": "git+https://github.com/moonlight-mod/moonlight.git"
10
},
11
"bugs": {
12
"url": "https://github.com/moonlight-mod/moonlight/issues"
13
},
14
"scripts": {
15
"build": "node build.mjs",
16
"dev": "node build.mjs --watch",
17
"clean": "node build.mjs --clean",
18
"browser": "node build.mjs --browser",
19
"browser-mv2": "node build.mjs --browser --mv2",
20
"lint": "eslint packages",
21
"lint:fix": "eslint packages --fix",
22
"lint:report": "eslint --output-file eslint_report.json --format json packages",
23
"typecheck": "tsc --noEmit",
24
"check": "pnpm run lint && pnpm run typecheck",
25
"prepare": "husky install"
26
},
27
"devDependencies": {
28
"esbuild": "^0.19.3",
29
"esbuild-copy-static-files": "^0.1.0",
30
"eslint": "^9.12.0",
31
"@moonlight-mod/eslint-config": "github:moonlight-mod/eslint-config",
32
"husky": "^8.0.3",
33
"prettier": "^3.1.0",
34
"typescript": "^5.3.2"
35
}
36
}
37