-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
58 lines (58 loc) · 2.38 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
{
"name": "postybirb-plus",
"version": "3.1.53",
"description": "PostyBirb is an application that helps artists post art and other multimedia to multiple websites more quickly..",
"main": "index.js",
"scripts": {
"install": "run-p install:**",
"install:commons": "cd commons && npm install && npm run build",
"install:app": "cd electron-app && npm install",
"install:ui": "cd ui && npm install",
"build": "run-p build:**",
"build:app": "cd electron-app && npm run build",
"build:ui": "cd ui && npm run build",
"make": "run-s install build",
"release:windows": "node create-signer.js && npm run make && cd electron-app && yarn run release:windows",
"release:linux": "node create-signer.js && npm run make && cd electron-app && yarn run release:linux",
"release:osx": "npm run make && cd electron-app && yarn run release:osx",
"contribute": "npm ci --ignore-scripts && run-p --silent --print-name ci:** && run-p build:**",
"contribute:debug": "npm ci --ignore-scripts && run-p --print-name ci:** && run-p build:**",
"ci:commons": "cd commons && npm ci --no-audit&& npm run build",
"ci:app": "cd electron-app && npm ci --no-audit",
"ci:ui": "cd ui && npm ci --no-audit --no-fund --no-deprecate",
"codestyle": "run-s format lint",
"format": "prettier --write \"{commons/src,ui/src,electron-app/{test,src}}/**/*.ts\"",
"lint": "eslint \"{commons/src,ui/src,electron-app/{test,src}}/**/*.ts\"",
"start": "npm run start --prefix electron-app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvdicarlo/postybirb-plus.git"
},
"author": "Michael DiCarlo",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mvdicarlo/postybirb-plus/issues"
},
"homepage": "https://github.com/mvdicarlo/postybirb-plus#readme",
"dependencies": {
"@mtproto/core": "^5.3.0",
"npm-run-all2": "^6.0.6",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"shx": "^0.3.4",
"typescript": "^4.9.5",
"yarn": "^1.22.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0"
}
}