near-cli-rs 0.14.0 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitignore +1 -0
- package/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/binary-install.js +141 -0
- package/binary.js +56 -69
- package/npm-shrinkwrap.json +647 -211
- package/package.json +84 -22
- package/run-near.js +4 -0
- package/run.js +0 -4
package/package.json
CHANGED
|
@@ -1,34 +1,96 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"version": "0.14.0",
|
|
4
|
-
"description": "human-friendly console utility that helps to interact with NEAR Protocol from command line.",
|
|
5
|
-
"repository": "https://github.com/near/near-cli-rs",
|
|
6
|
-
"homepage": "https://near.cli.rs",
|
|
7
|
-
"license": "MIT OR Apache-2.0",
|
|
8
|
-
"contributors": ["FroVolod <frol_off@meta.ua>","Near Inc <hello@nearprotocol.com>"],
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/near/near-cli-rs/releases/download/v0.14.2",
|
|
9
3
|
"bin": {
|
|
10
|
-
"near": "run.js"
|
|
4
|
+
"near": "run-near.js"
|
|
11
5
|
},
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
6
|
+
"contributors": [
|
|
7
|
+
"FroVolod <frol_off@meta.ua>",
|
|
8
|
+
"Near Inc <hello@nearprotocol.com>"
|
|
9
|
+
],
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"axios": "^1.7.4",
|
|
12
|
+
"axios-proxy-builder": "^0.1.2",
|
|
13
|
+
"console.table": "^0.10.0",
|
|
14
|
+
"detect-libc": "^2.0.3",
|
|
15
|
+
"rimraf": "^5.0.8",
|
|
16
|
+
"tar": "^7.4.3"
|
|
17
|
+
},
|
|
18
|
+
"description": "human-friendly console utility that helps to interact with NEAR Protocol from command line.",
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"prettier": "^3.3.3"
|
|
16
21
|
},
|
|
17
22
|
"engines": {
|
|
18
23
|
"node": ">=14",
|
|
19
24
|
"npm": ">=6"
|
|
20
25
|
},
|
|
26
|
+
"glibcMinimum": {
|
|
27
|
+
"major": 2,
|
|
28
|
+
"series": 35
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://near.cli.rs",
|
|
31
|
+
"license": "MIT OR Apache-2.0",
|
|
32
|
+
"name": "near-cli-rs",
|
|
33
|
+
"preferUnplugged": true,
|
|
34
|
+
"repository": "https://github.com/near/near-cli-rs",
|
|
35
|
+
"scripts": {
|
|
36
|
+
"fmt": "prettier --write **/*.js",
|
|
37
|
+
"fmt:check": "prettier --check **/*.js",
|
|
38
|
+
"postinstall": "node ./install.js"
|
|
39
|
+
},
|
|
40
|
+
"supportedPlatforms": {
|
|
41
|
+
"aarch64-apple-darwin": {
|
|
42
|
+
"artifactName": "near-cli-rs-aarch64-apple-darwin.tar.gz",
|
|
43
|
+
"bins": {
|
|
44
|
+
"near": "near"
|
|
45
|
+
},
|
|
46
|
+
"zipExt": ".tar.gz"
|
|
47
|
+
},
|
|
48
|
+
"aarch64-pc-windows-msvc": {
|
|
49
|
+
"artifactName": "near-cli-rs-x86_64-pc-windows-msvc.tar.gz",
|
|
50
|
+
"bins": {
|
|
51
|
+
"near": "near.exe"
|
|
52
|
+
},
|
|
53
|
+
"zipExt": ".tar.gz"
|
|
54
|
+
},
|
|
55
|
+
"aarch64-unknown-linux-gnu": {
|
|
56
|
+
"artifactName": "near-cli-rs-aarch64-unknown-linux-gnu.tar.gz",
|
|
57
|
+
"bins": {
|
|
58
|
+
"near": "near"
|
|
59
|
+
},
|
|
60
|
+
"zipExt": ".tar.gz"
|
|
61
|
+
},
|
|
62
|
+
"x86_64-apple-darwin": {
|
|
63
|
+
"artifactName": "near-cli-rs-x86_64-apple-darwin.tar.gz",
|
|
64
|
+
"bins": {
|
|
65
|
+
"near": "near"
|
|
66
|
+
},
|
|
67
|
+
"zipExt": ".tar.gz"
|
|
68
|
+
},
|
|
69
|
+
"x86_64-pc-windows-gnu": {
|
|
70
|
+
"artifactName": "near-cli-rs-x86_64-pc-windows-msvc.tar.gz",
|
|
71
|
+
"bins": {
|
|
72
|
+
"near": "near.exe"
|
|
73
|
+
},
|
|
74
|
+
"zipExt": ".tar.gz"
|
|
75
|
+
},
|
|
76
|
+
"x86_64-pc-windows-msvc": {
|
|
77
|
+
"artifactName": "near-cli-rs-x86_64-pc-windows-msvc.tar.gz",
|
|
78
|
+
"bins": {
|
|
79
|
+
"near": "near.exe"
|
|
80
|
+
},
|
|
81
|
+
"zipExt": ".tar.gz"
|
|
82
|
+
},
|
|
83
|
+
"x86_64-unknown-linux-gnu": {
|
|
84
|
+
"artifactName": "near-cli-rs-x86_64-unknown-linux-gnu.tar.gz",
|
|
85
|
+
"bins": {
|
|
86
|
+
"near": "near"
|
|
87
|
+
},
|
|
88
|
+
"zipExt": ".tar.gz"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"version": "0.14.2",
|
|
21
92
|
"volta": {
|
|
22
93
|
"node": "18.14.1",
|
|
23
94
|
"npm": "9.5.0"
|
|
24
|
-
},
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"axios-proxy-builder": "^0.1.1",
|
|
27
|
-
"binary-install": "^1.0.6",
|
|
28
|
-
"console.table": "^0.10.0",
|
|
29
|
-
"detect-libc": "^2.0.0"
|
|
30
|
-
},
|
|
31
|
-
"devDependencies": {
|
|
32
|
-
"prettier": "2.8.4"
|
|
33
95
|
}
|
|
34
|
-
}
|
|
96
|
+
}
|
package/run-near.js
ADDED
package/run.js
DELETED