-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.61 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
{
"name": "kiwiirc-desktop",
"author": {
"name": "Kiwi IRC",
"email": "[email protected]",
"url": "https://github.com/kiwiirc/kiwiirc-desktop"
},
"description": "A desktop client based on the Kiwi IRC web client.",
"homepage": "https://kiwiirc.com",
"version": "1.6.1",
"license": "Apache-2.0",
"private": true,
"main": "src/index.js",
"dependencies": {
"electron-context-menu": "^3.6.1",
"irc-framework": "^4.13.1",
"os": "^0.1.2",
"striptags": "^3.2.0"
},
"devDependencies": {
"electron": "25.3.0",
"electron-builder": "^24.4.0",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"npm-run-all": "^4.1.5"
},
"scripts": {
"postinstall": "electron-builder install-app-deps && npm-run-all maybe-build",
"maybe-build": "[ -f kiwiirc/dist/index.html ] || npm-run-all build:kiwi",
"maybe-init": "[ -f kiwiirc/package.json ] || git submodule init && git submodule update --remote --merge",
"dev": "npm-run-all maybe-build && electron .",
"build": "npm-run-all build:*",
"build:kiwi": "npm-run-all maybe-init && cd kiwiirc && yarn && yarn build",
"build:dist": "electron-builder",
"lint": "eslint --ext .js ./src/",
"update:version": "node -pe \"require('./kiwiirc/package.json').version\" | xargs -o yarn version --no-git-tag-version --new-version "
}
}