@fastnear/repl 0.9.2 → 0.9.4

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.
Files changed (2) hide show
  1. package/README.md +19 -0
  2. package/package.json +14 -2
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # REPL
2
+
3
+ Run with:
4
+
5
+ yarn repl
6
+
7
+ and try the following:
8
+
9
+ mockTx
10
+
11
+ and see how it is displayed. and then the verbose call:
12
+
13
+ v(mockTx)
14
+
15
+ ## alpha version
16
+
17
+ The focus thus far has been of a highly technical nature, and after releasing this alpha version the devs will let their minds gestate. then this file will fill out with more meaningful info and snippets. 🙏🏼
18
+
19
+ Make sure to visit the [project-level README](https://github.com/fastnear/js-monorepo#global-near-js)
package/package.json CHANGED
@@ -1,17 +1,29 @@
1
1
  {
2
2
  "name": "@fastnear/repl",
3
- "version": "0.9.2",
3
+ "version": "0.9.4",
4
4
  "license": "MIT",
5
5
  "description": "Simple REPL to explore NEAR blockchain objects",
6
6
  "bin": "bin/repl.cjs",
7
7
  "type": "module",
8
+ "author": "FastNEAR",
9
+ "homepage": "https://js.fastnear.com",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/fastnear/js-monorepo.git"
13
+ },
14
+ "keywords": [
15
+ "fastnear",
16
+ "repl",
17
+ "near-protocol",
18
+ "web3"
19
+ ],
8
20
  "scripts": {
9
21
  "start": "node bin/repl.cjs",
10
22
  "publish": "yarn npm publish",
11
23
  "clean": "yarn rimraf node_modules"
12
24
  },
13
25
  "dependencies": {
14
- "@fastnear/api": "0.9.2"
26
+ "@fastnear/api": "0.9.4"
15
27
  },
16
28
  "devDependencies": {
17
29
  "rimraf": "*"