forked from jankuss/shroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.87 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
{
"name": "@jankuss/shroom",
"version": "0.4.1",
"main": "dist/index.js",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/jankuss/shroom.git"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bluebird": "^3.5.33",
"@types/bytebuffer": "^5.0.42",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.13",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.56",
"@types/tween.js": "^18.6.1",
"@types/ws": "^7.4.0",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"canvas": "^2.6.1",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.1",
"pixi.js": "^5.3.3",
"prettier": "2.2.1",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.1.1",
"typescript": "^4.0.3"
},
"dependencies": {
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"bytebuffer": "^5.0.1",
"chalk": "^4.1.0",
"events": "^3.2.0",
"frame-stream": "^2.0.3",
"ink": "^3.0.8",
"node-fetch": "^2.6.1",
"react": "^16.14.0",
"rxjs": "^6.6.3",
"stream": "0.0.2",
"timers": "^0.1.1",
"timers-browserify": "^2.0.11",
"tween.js": "^16.6.0",
"ws": "^7.4.2",
"xml2js": "^0.4.23",
"yargs": "^16.2.0"
},
"peerDependencies": {
"pixi.js": "^5.3.3"
},
"scripts": {
"dev": "tsc --watch",
"dump": "yarn ts-node-dev src/downloading/cli/index.tsx dump",
"test": "jest",
"build": "rm -rf dist && tsc",
"prepublishOnly": "yarn build"
},
"bin": {
"shroom": "dist/cli/index.js"
},
"files": [
"/dist"
]
}