-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 2.9 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "anitv",
"productName": "AniTV",
"description": "Download and watch your preferred seasonal anime and get notified whenever a new episode is available",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/MarchWorks/anitv.git"
},
"main": "main/index.js",
"scripts": {
"dev": "electron .",
"build": "yarn build-renderer && yarn build-app",
"deploy": "yarn build-renderer && yarn deploy-app",
"build-app": "electron-builder",
"deploy-app": "electron-builder build --publish always",
"build-renderer": "cross-env NODE_ENV=production next build renderer && next export renderer",
"test": "yarn test-lint",
"test-lint": "xo",
"lint-fix": "xo --fix"
},
"build": {
"appId": "com.marchworks.anitv",
"files": [
"**/*",
"!renderer",
"renderer/out"
],
"win": {
"icon": "main/static/icons/icon.png",
"publish": {
"provider": "github"
}
},
"mac": {
"icon": "main/static/icons/icon.png",
"extendInfo": {
"LSUIElement": 1
}
},
"asar": true
},
"author": "MarchWorks<[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn lint-fix",
"yarn test-lint",
"prettier --single-quote --write --no-editorconfig"
]
},
"xo": {
"parser": "babel-eslint",
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"env": [
"browser",
"node"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"camelcase": 0,
"no-async-promise-executor": 0,
"no-await-in-loop": 0,
"no-negated-condition": 0,
"no-void": 0,
"react/react-in-jsx-scope": 0,
"react/prop-types": 0,
"require-atomic-updates": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"complexity": 0,
"max-params": 0,
"lines-between-class-members": 0,
"semi": [
2,
"always"
]
},
"ignores": [
"dist",
"renderer/.next",
"renderer/out"
]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"cross-env": "^6.0.3",
"electron": "^8.1.1",
"electron-builder": "^22.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"next": "^9.3.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"xo": "^0.24.0"
},
"dependencies": {
"electron-is-dev": "^1.1.0",
"electron-next": "^3.1.5",
"electron-store": "^5.1.0",
"electron-updater": "^4.2.0",
"fs-extra": "^8.0.1",
"fuzzball": "^1.3.0",
"got": "^11.1.4",
"webtorrent": "^0.107.17",
"xmldom": "^0.3.0"
}
}