-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.74 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
{
"name": "@acurast/cli",
"version": "0.10.0",
"description": "A cli to interact with the Acurast Cloud.",
"main": "dist/index.js",
"bin": {
"acurast": "./dist/index.js"
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npx tsc && node -e \"const fs=require('fs');fs.copyFileSync('./src/util/live-code-processor.js','./dist/util/live-code-processor.js');fs.chmodSync('./dist/index.js',0o755)\"",
"setup": "npm run build && npm i -g .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:e2e": "sh -c 'if command -v docker-compose >/dev/null 2>&1; then docker-compose -f e2e/docker-compose.yml run --rm e2e; else docker compose -f e2e/docker-compose.yml run --rm e2e; fi'",
"test:e2e:local": "bash e2e/scripts/run-all.sh",
"test-live": "npm run build && node ./dist/index.js live",
"prettier": "npx prettier . --write"
},
"keywords": [
"acurast",
"cloud",
"cli"
],
"author": "Andreas Gassmann <andreas@andreasgassmann.ch>",
"license": "UNLICENSED",
"homepage": "https://www.acurast.com",
"repository": {
"type": "git",
"url": "https://github.com/acurast/acurast-cli"
},
"dependencies": {
"@acurast/dapp": "^1.0.1",
"@acurast/devtools": "^1.0.1",
"@acurast/sdk": "^1.3.0",
"@acurast/vps": "^0.2.1-beta.0",
"@inquirer/prompts": "^5.0.5",
"@polkadot/api": "^16.1.2",
"@polkadot/api-augment": "^16.1.2",
"@polkadot/keyring": "^14.0.0",
"@polkadot/types": "^16.1.2",
"@polkadot/types-codec": "^16.1.2",
"@polkadot/util": "^14.0.0",
"@polkadot/util-crypto": "^14.0.0",
"@polkadot/wasm-crypto": "^7.3.2",
"adm-zip": "^0.5.16",
"ansis": "^4.1.0",
"bignumber.js": "^9.3.0",
"bip39": "^3.1.0",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"dotenv": "^16.5.0",
"figlet": "^1.8.1",
"inquirer": "^9.2.23",
"is-interactive": "^2.0.0",
"listr2": "^8.3.3",
"log-symbols": "^6.0.0",
"needle": "^3.3.1",
"open": "^8.4.2",
"parse-duration": "^1.1.0",
"stdin-discarder": "^0.2.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/cli-progress": "^3.11.6",
"@types/elliptic": "^6.4.18",
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}