-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
90 lines (90 loc) · 2.72 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"private": true,
"name": "companion",
"version": "1.5.9",
"description": "Did you know Compy the companion? They are a friendly mini browser to pin on top of any other desktop app and keep doing your things while enjoying a live stream or a youtube video.",
"main": "public/main.min.js",
"build": {
"appId": "com.brunurd.companion",
"productName": "Companion",
"files": "public/**/*",
"mac": {
"category": "public.app-category.entertainment",
"target": "default",
"icon": "public/images/favicon.icns"
},
"win": {
"target": "nsis",
"icon": "public/images/favicon.ico"
},
"nsis": {
"artifactName": "${productName} ${version}.exe"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunurd/companion.git"
},
"keywords": [
"youtube",
"twitch",
"companion",
"client",
"electron",
"always on top",
"browser"
],
"author": "Bruno Araujo <bruno@lavaleakgames.com>",
"license": "MIT",
"homepage": "https://github.com/brunurd/companion#readme",
"scripts": {
"start": "concurrently \"rollup -cw\" \"node src/delay.js\"",
"svelte": "sirv public",
"build": "rollup -c",
"electron": "electron .",
"debug": "electron . debug",
"test": "jest",
"test:coverage": "jest --coverage --watchAll=false",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"icons": "png2icons ./public/images/compy.png ./public/images/favicon -all -bc -i",
"pack": "electron-builder",
"pack:dir": "electron-builder --dir",
"dist:win": "electron-builder --win --x64",
"dist:linux": "electron-builder --linux --x64",
"dist:mac": "electron-builder --mac --x64",
"postinstall": "install-app-deps"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-commonjs": "^13.0.2",
"@rollup/plugin-node-resolve": "^8.4.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/svelte": "^3.0.3",
"ansi-regex": "^6.0.1",
"babel-jest": "^26.6.3",
"concurrently": "^6.4.0",
"electron": "^11.5.0",
"electron-builder": "^22.9.1",
"electron-reload": "^1.5.0",
"eslint": "^7.18.0",
"eslint-plugin-svelte3": "^2.7.3",
"jest": "^26.6.3",
"png2icons": "^2.0.1",
"rollup": "^2.38.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^6.1.0",
"sirv-cli": "^1.0.10",
"stylus": "^0.54.8",
"svelte": "^3.32.0",
"svelte-jester": "^1.3.0",
"svelte-preprocess": "^3.9.12"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
}
}