-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.42 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.42 KB
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
{
"name": "kitch",
"productName": "kitch",
"desktopName": "kitch",
"version": "26.9.0",
"description": "itch.io desktop client",
"keywords": [
"itch.io",
"games"
],
"repository": "https://github.com/itchio/itch",
"bugs": "https://github.com/itchio/itch/issues",
"author": "itch.io team <support@itch.io>",
"contributors": [
{
"name": "Amos Wenger",
"email": "amos@itch.io"
},
{
"name": "Leaf Corcoran",
"email": "leafo@itch.io"
}
],
"main": "dist/main/main.bundle.cjs",
"license": "MIT",
"type": "module",
"dependencies": {
"@goosewobbler/electron-redux": "^1.0.4",
"@itchio/butlerd": "^15.0.0",
"array-move": "^3.0.1",
"btoa": "^1.2.1",
"buffer": "^6.0.3",
"classnames": "^2.2.6",
"crc-32": "^1.2.0",
"events": "^3.3.0",
"fast-memoize": "^2.5.2",
"intl-messageformat": "^9.4.6",
"logrotate-stream": "^0.2.7",
"lru-cache": "^6.0.0",
"marked-extra": "^0.2.6",
"mime-types": "^2.1.28",
"multi-write-stream": "^2.0.1",
"polished": "^3.6.7",
"process": "^0.11.10",
"progress-stream": "^2.0.0",
"querystring-es3": "^0.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-fast-compare": "^3.2.0",
"react-hint": "^3.2.0",
"react-intl": "^5.12.0",
"react-json-inspector": "^7.1.1",
"react-onclickoutside": "^6.10.0",
"react-redux": "^7.2.2",
"react-sortable-hoc": "^1.11.0",
"react-tabs": "^4.3.0",
"redux": "^4.0.5",
"redux-cli-logger": "^2.1.0",
"redux-logger": "^3.0.6",
"reselect": "^4.0.0",
"semver": "^7.3.4",
"shell-quote": "^1.7.2",
"split2": "^3.2.2",
"styled-components": "^5.3.11",
"systeminformation": "^5.21.7",
"term-color": "^1.0.1",
"tinycolor2": "^1.4.2",
"triangulr": "^1.0.3",
"underscore": "^1.12.0",
"url": "^0.11.4",
"uuid": "^13.0.0",
"vivus": "^0.4.5",
"which": "^2.0.2",
"yauzl": "^2.9.2"
},
"devDependencies": {
"@electron/notarize": "^3.1.1",
"@electron/osx-sign": "^2.3.0",
"@electron/packager": "^19.0.2",
"@itchio/bob": "^2.1.0",
"@types/classnames": "^2.2.11",
"@types/lru-cache": "^5.1.0",
"@types/mime-types": "^2.1.0",
"@types/node": "^24.0.0",
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.80",
"@types/react-dom": "^17.0.25",
"@types/react-json-tree": "^0.6.11",
"@types/react-redux": "^7.1.16",
"@types/readable-stream": "^4.0.22",
"@types/semver": "^7.3.4",
"@types/split2": "^2.1.5",
"@types/styled-components": "^5.1.36",
"@types/vivus": "^0.4.3",
"@types/which": "^1.3.2",
"@types/yauzl": "^2.9.1",
"cross-env": "^10.1.0",
"electron": "^40.0.0",
"esbuild": "^0.27.0",
"husky": "^7.0.4",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^5.9.3"
},
"scripts": {
"sync-butler": "cd ../butler && go run ./butlerd/generous ts ../itch/src/common/butlerd/messages.ts",
"start": "node develop.mjs",
"compile": "cross-env NODE_ENV=production node build.mjs",
"clean": "rm -rf artifacts dist prefix build .chromedriver *.log.txt",
"integration-tests": "node release/test.js --detect-osarch",
"ts-check": "tsc --noEmit --skipLibCheck",
"ts-watch": "tsc --noEmit --skipLibCheck --watch",
"release": "node release/push-tag.js",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
}
}