-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 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
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
{
"name": "@hyperplay/cli",
"version": "2.14.6",
"description": "Hyperplay CLI",
"author": "HyperPlay Labs, Inc.",
"bin": {
"hyperplay": "./bin/run"
},
"homepage": "https://github.com/hyperplay/cli",
"license": "MPL-2.0",
"main": "dist/index.js",
"repository": "hyperplay/cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/package-lock.json"
],
"dependencies": {
"@oclif/core": "^1.8.0",
"@oclif/plugin-help": "^5",
"@valist/sdk": "^2.10.4",
"archiver": "^7.0.0",
"axios": "^1.7.9",
"axios-cookiejar-support": "^5.0.5",
"ethers": "^6.13.5",
"files-from-path": "1.0.0",
"inquirer": "^8.2.4",
"keytar": "^7.9.0",
"qs": "^6.13.1",
"siwe": "^2.1.4",
"tough-cookie": "^5.0.0",
"typescript-plugin-css-modules": "5.1.0",
"ua-parser-js": "1.0.35",
"yaml": "^2.1.0"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/chai": "^4",
"@types/inquirer": "^8.2.1",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.4",
"@types/qs": "^6.9.17",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"chai": "^4",
"eslint": "^8.15.0",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^42.0.0",
"globby": "^11",
"hardhat": "^2.22.3",
"mocha": "^11.0.1",
"nock": "^13.5.4",
"nyc": "^15.1.0",
"oclif": "^3",
"shx": "^0.3.3",
"ts-node": "^10.2.1",
"typescript": "5.5.2",
"typescript-eslint": "^8.19.1"
},
"oclif": {
"bin": "hyperplay",
"dirname": "hyperplay",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " "
},
"scripts": {
"build": "shx rm -rf dist && tsc -b && oclif manifest && oclif readme",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"test": "mocha -r ts-node/register 'test/**/*.test.ts' --timeout 120000",
"version": "oclif readme && git add README.md",
"startLocalHardhat": "hardhat node",
"coverage": "nyc npm run test"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/hyperplay/cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}