-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
{
"name": "moonlight",
"version": "1.3.5",
"description": "Yet another Discord mod",
"homepage": "https://moonlight-mod.github.io/",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/moonlight-mod/moonlight.git"
},
"bugs": {
"url": "https://github.com/moonlight-mod/moonlight/issues"
},
"scripts": {
"build": "node build.mjs",
"dev": "node build.mjs --watch",
"clean": "node build.mjs --clean",
"browser": "node build.mjs --browser",
"browser-mv2": "node build.mjs --browser --mv2",
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"lint:report": "eslint --output-file eslint_report.json --format json packages",
"typecheck": "tsc --noEmit",
"check": "pnpm run lint && pnpm run typecheck",
"prepare": "husky install"
},
"devDependencies": {
"esbuild": "^0.19.3",
"esbuild-copy-static-files": "^0.1.0",
"eslint": "^9.12.0",
"@moonlight-mod/eslint-config": "github:moonlight-mod/eslint-config",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
}
}