-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
105 lines (105 loc) · 3.8 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ghost-chat",
"type": "module",
"version": "3.3.0",
"private": true,
"description": "A Standalone chat overlay for Twitch.tv, Kick.tv and other streaming platforms",
"author": {
"name": "Marco Schuster",
"email": "[email protected]"
},
"license": "DBAD",
"homepage": "https://github.com/Enubia/ghost-chat#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Enubia/ghost-chat.git"
},
"bugs": {
"url": "https://github.com/Enubia/ghost-chat/issues"
},
"keywords": [
"electron",
"typescript",
"vue",
"twitch",
"kick.tv",
"chat",
"transparent-overlay",
"streaming",
"live-stream"
],
"main": "out/dist-electron/main/background.js",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"changelog:generate-vue": "auto-changelog --handlebars-setup handlebars-setup.cjs -p -l false -t ./changelog-template-vue.hbs --ignore-commit-pattern \"chore\\(deps\\)|chore: release|Enubia/renovate\" --starting-version v2.0.0 --output src/components/changelog/Generated.vue && eslint --fix src/components/changelog/Generated.vue",
"changelog:generate": "auto-changelog -p -l false -t ./changelog-template.hbs --ignore-commit-pattern \"chore\\(deps\\)|chore: release|Enubia/renovate\" --starting-version v2.0.0",
"changelog:push": "git add . && git commit -m \"chore: update changelog\" && git push",
"changelog:update": "pnpm changelog:generate && pnpm changelog:generate-vue && pnpm changelog:push",
"clean": "rimraf out node_modules",
"dev": "vite",
"lint:electron": "eslint electron/",
"lint:shared": "eslint shared/",
"lint:src": "eslint src/",
"lint": "pnpm lint:src && pnpm lint:shared && pnpm lint:electron",
"release": "pnpm build && electron-builder --config electron-builder.config.cjs",
"publish": "pnpm changelog:update && release-it",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "3.8.0",
"@codemirror/lang-css": "6.3.0",
"@codemirror/lang-javascript": "6.2.2",
"@codemirror/theme-one-dark": "6.1.2",
"@iconify/json": "2.2.266",
"@iconify/vue": "4.1.2",
"@intlify/unplugin-vue-i18n": "5.2.0",
"@picocss/pico": "2.0.6",
"@radix-icons/vue": "1.0.0",
"@tomjs/vite-plugin-iconify": "1.2.1",
"@vitejs/plugin-vue": "5.1.4",
"@vueuse/core": "11.2.0",
"auto-changelog": "2.5.0",
"autoprefixer": "10.4.20",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"codemirror": "6.0.1",
"electron": "33.1.0",
"electron-builder": "25.1.8",
"electron-log": "5.2.0",
"electron-store": "10.0.0",
"electron-updater": "6.3.9",
"lint-staged": "15.2.10",
"radix-vue": "1.9.8",
"release-it": "17.10.0",
"rimraf": "6.0.1",
"simple-git-hooks": "2.11.1",
"tailwind-merge": "2.5.4",
"tailwindcss": "3.4.14",
"tailwindcss-animate": "1.0.7",
"typescript": "5.6.3",
"unplugin-vue-router": "0.10.8",
"vite": "5.4.10",
"vite-plugin-electron": "0.28.8",
"vite-plugin-electron-renderer": "0.14.6",
"vue": "3.5.12",
"vue-codemirror": "6.1.1",
"vue-i18n": "10.0.4",
"vue-router": "4.4.5",
"vue-tsc": "2.1.10"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint"
}
}