generated from moonlight-mod/sample-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 881 Bytes
/
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
{
"name": "@cynosphere/moonlight-extensions",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "node build.mjs",
"dev": "node build.mjs --watch",
"repo": "node repo.mjs",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:report": "eslint --output-file eslint_report.json --format json serc",
"typecheck": "tsc --noEmit",
"check": "pnpm run lint && pnpm run typecheck"
},
"devDependencies": {
"@electron/asar": "^3.2.8",
"@moonlight-mod/esbuild-config": "github:moonlight-mod/esbuild-config",
"@moonlight-mod/eslint-config": "github:moonlight-mod/eslint-config",
"esbuild": "^0.19.3",
"esbuild-copy-static-files": "^0.1.0",
"esbuild-plugin-inline-import": "^1.1.0",
"eslint": "^9.17.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@moonlight-mod/types": "^1.3.7"
}
}