forked from Enubia/ghost-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.27 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
{
"name": "ghost-chat",
"version": "1.4.0",
"private": false,
"description": "Standalone twitch chat overlay",
"author": {
"email": "[email protected]",
"name": "Marco Schuster"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint --ignore-path .eslintignore src",
"start": "vue-cli-service electron:serve",
"electron:build": "vue-cli-service electron:build",
"upgradePackages": "ncu -u",
"clean": "gulp clean",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@tailwindcss/postcss7-compat": "^2.0.3",
"autoprefixer": "^9.8.6",
"electron": "^10.4.0",
"electron-context-menu": "^2.5.0",
"electron-log": "^4.3.2",
"electron-store": "^7.0.2",
"electron-window-state": "^5.0.3",
"escape-string-regexp": "^4.0.0",
"minimist": "^1.2.5",
"mpv-ipc": "^0.1.3",
"postcss": "^7.0.35",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3",
"tmi.js": "^1.7.5",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-cli-plugin-electron-builder": "^1.4.6",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.1"
},
"devDependencies": {
"@electron/typescript-definitions": "^8.8.0",
"@hokify/eslint-config-vue": "^1.0.16",
"@types/node": "14.14.34",
"@types/tmi.js": "^1.7.1",
"@vue/cli": "^4.5.11",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-typescript": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"babel-plugin-module-resolver": "^4.1.0",
"del": "^6.0.0",
"electron-builder": "^22.10.5",
"eslint": "^7.22.0",
"gulp": "^4.0.2",
"husky": "^5.1.3",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"typescript": "^4.2.3",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/LettuceKiing/ghost-chat/issues"
},
"homepage": "https://github.com/LettuceKiing/ghost-chat#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LettuceKiing/ghost-chat.git"
}
}