-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.98 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
91
92
93
94
{
"name": "twitch-highlights-logger",
"version": "0.3.4",
"description": "An app to detect highlights in a Twitch VOD",
"main": "main.js",
"scripts": {
"build:dependencies": "bash scripts/build-dependencies.sh",
"build": "bash scripts/build.sh",
"lint": "eslint src",
"obfuscate": "javascript-obfuscator build/providers/twitch-client-id.js && rm build/providers/twitch-client-id.js && mv build/providers/twitch-client-id-obfuscated.js build/providers/twitch-client-id.js",
"test": "./node_modules/.bin/mocha --require @babel/register tests",
"watch": "bash scripts/watch.sh",
"package:linux": "bash scripts/package-linux.sh",
"package:windows": "bash scripts/package-windows.sh",
"package:macos": "bash scripts/package-macos.sh",
"serve": "npm run build; electron build & webpack --watch"
},
"author": "Olivier Bourdoux <[email protected]>",
"license": "GPL",
"build": {
"productName": "TwitchHighlights",
"appId": "com.xureilab.twitch_highlights",
"asar": true,
"mac": {
"category": "Utility"
},
"linux": {
"category": "Utility",
"target": "AppImage",
"icon": "300x300.png"
},
"win": {
"icon": "300x300.png"
},
"directories": {
"app": "build",
"output": "dist_packages"
}
},
"private": true,
"dependencies": {
"@babel/runtime": "^7.12.18",
"@babel/runtime-corejs3": "^7.12.18",
"core-js": "^3.9.0",
"debug": "^4.3.1",
"electron-json-storage": "^4.5.0",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"semver": "^7.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.10",
"@babel/register": "^7.13.8",
"autobind-decorator": "^2.4.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"chai": "^4.3.3",
"css-loader": "^5.0.2",
"deep-eql": "^4.0.0",
"dirty-chai": "^2.0.1",
"electron": "^20.3.9",
"electron-builder": "23.0.2",
"eslint": "^6.3.0",
"eslint-config-xurei": "^1.1.1",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-xurei": "^1.0.0",
"html-webpack-plugin": "^4.5.2",
"javascript-obfuscator": "^4.0.2",
"mocha": "^8.3.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-is": "^16.8.0",
"sass": "^1.49.7",
"sass-loader": "^10.2.1",
"store": "^2.0.12",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"xureact": "^1.3.4"
}
}