-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.67 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
{
"name": "kiwiirc-desktop",
"author": {
"name": "Kiwi IRC",
"email": "desktop@kiwiirc.com",
"url": "https://github.com/kiwiirc/kiwiirc-desktop"
},
"description": "A desktop client based on the Kiwi IRC web client.",
"homepage": "https://kiwiirc.com",
"version": "1.7.1",
"license": "Apache-2.0",
"private": true,
"main": "src/index.js",
"dependencies": {
"electron-context-menu": "^3.6.1",
"irc-framework": "^4.14.0",
"os": "^0.1.2",
"striptags": "^3.2.0"
},
"devDependencies": {
"electron": "^33.3.0",
"electron-builder": "^24.13.3",
"electron-builder-squirrel-windows": "24.13.3",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"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 "
}
}