-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.07 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.07 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
{
"name": "@iexec/iapp",
"version": "1.3.3",
"description": "A CLI to guide you through the process of building an iExec iApp",
"main": "dist/index.js",
"type": "module",
"bin": {
"iapp": "dist/index.js"
},
"homepage": "https://github.com/iExecBlockchainComputing/iapp/blob/main/cli/README.md",
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.json",
"build:watch": "npm run build -- --watch",
"check-format": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint src",
"test:pre": "echo 'testing' && which iapp || (echo 'iapp CLI is not installed' && exit 1)",
"test": "npm run test:pre && node --test test/**/*.test.ts"
},
"author": "iExec",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/iExecBlockchainComputing/iapp.git"
},
"keywords": [
"iExec"
],
"bugs": {
"url": "https://github.com/iExecBlockchainComputing/iapp/issues"
},
"files": [
"src",
"dist",
"templates",
"npm-shrinkwrap.json"
],
"dependencies": {
"borsh": "^2.0.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"debug": "^4.4.0",
"dockerode": "^4.0.5",
"ethers": "^6.13.5",
"figlet": "^1.8.1",
"iexec": "^8.22.4",
"jszip": "^3.10.1",
"magic-bytes.js": "^1.10.0",
"msgpackr": "^1.11.2",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"update-check": "^1.5.4",
"uuid": "^11.1.0",
"ws": "^8.18.1",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/debug": "^4.1.12",
"@types/dockerode": "^3.3.37",
"@types/figlet": "^1.7.0",
"@types/node": "^25.0.3",
"@types/prompts": "^2.4.9",
"@types/ws": "^8.18.1",
"@types/yargs": "^17.0.33",
"cli-testing-library": "^3.0.1",
"eslint": "^9.24.0",
"eslint-plugin-unicorn": "^58.0.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
}
}