-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.67 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.67 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
{
"name": "@mimicprotocol/cli",
"version": "0.0.1-rc.39",
"license": "GPL-3.0",
"private": false,
"type": "commonjs",
"bin": {
"mimic": "./bin/run.js"
},
"scripts": {
"prepare": "yarn build",
"build": "rm -rf dist && tsc",
"start": "yarn build && node ./bin/run.js",
"test": "yarn build && ts-mocha ./tests --recursive --extension .spec.ts --exit --timeout 5000",
"lint": "eslint ."
},
"files": [
"dist",
"bin"
],
"dependencies": {
"@inquirer/prompts": "^7.2.4",
"@oclif/core": "^4.2.2",
"@oclif/plugin-not-found": "^3.2.38",
"axios": "^1.7.9",
"cross-spawn": "^7.0.6",
"ethers": "^6.13.5",
"form-data": "^4.0.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"simple-git": "^3.30.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@oclif/test": "^4.1.7",
"@types/chai": "^4.3.5",
"@types/cross-spawn": "^6.0.6",
"@types/express": "4.17.17",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.15",
"@types/mocha": "^10.0.1",
"@types/node": "^22.10.5",
"axios-mock-adapter": "^2.1.0",
"chai": "^4.3.7",
"eslint-config-mimic": "^0.0.4",
"mocha": "^10.2.0",
"sinon": "^18.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@mimicprotocol/lib-ts": ">=0.0.1-rc.39"
},
"peerDependenciesMeta": {
"@mimicprotocol/lib-ts": {
"optional": false
}
},
"oclif": {
"bin": "mimic",
"commands": "./dist/commands",
"dirname": "mimic",
"topicSeparator": " ",
"plugins": [
"@oclif/plugin-not-found"
]
},
"publishConfig": {
"access": "public"
}
}