-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 2.33 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "icue-ambilight",
"version": "1.6.4",
"description": "Ambilight for iCue devices",
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build",
"pretest": "npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts",
"typecheck-main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck-preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck-renderer": "tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run pretypecheck-renderer && npm run typecheck-main && npm run typecheck-preload && npm run typecheck-renderer",
"pretypecheck-renderer": "dts-cb -i packages/preload/src/**/*.ts -o packages/preload/exposedInMainWorld.d.ts"
},
"devDependencies": {
"@types/electron-devtools-installer": "2.2.1",
"@typescript-eslint/eslint-plugin": "5.8.0",
"cross-env": "7.0.3",
"dts-for-context-bridge": "0.7.1",
"electron": "16.0.2",
"electron-builder": "^22.14.5",
"electron-devtools-installer": "3.2.0",
"eslint": "8.5.0",
"nano-staged": "0.5.0",
"playwright": "1.17.1",
"simple-git-hooks": "2.7.0",
"typescript": "4.5.4",
"vite": "2.7.7"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"cue-sdk": "^2.2.0",
"electron-store": "^8.0.1",
"electron-updater": "4.6.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/augustinbegue/icue-ambilight"
},
"keywords": [
"icue",
"ambilight"
],
"author": "Augustin Bégué",
"license": "ISC",
"bugs": {
"url": "https://github.com/augustinbegue/icue-ambilight/issues"
},
"homepage": "https://github.com/augustinbegue/icue-ambilight#readme",
"build": {
"appId": "com.augustinbegue.icue-ambilight",
"productName": "icue-ambilight",
"artifactName": "${productName}-Setup-${version}.${ext}",
"copyright": "Copyright © 2021 Augustin Bégué",
"directories": {
"output": "dist",
"buildResources": "buildResources"
},
"files": [
"packages/**/dist/**"
],
"win": {
"icon": "buildResources/icon.png"
}
}
}