movelite 0.1.0 → 0.2.1-rc.0
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/README.md +6 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -22,3 +22,9 @@ movelite start --port 8090
|
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
See [github.com/gilbertsahumada/movelite](https://github.com/gilbertsahumada/movelite) for endpoints and integration with [movehat](https://www.npmjs.com/package/movehat).
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
Apache 2.0.
|
|
29
|
+
|
|
30
|
+
The published binary statically links code from [aptos-labs/aptos-core](https://github.com/aptos-labs/aptos-core) at commit `e33e3c1b9e` (November 20, 2025), which was released under the Apache License 2.0. The subsequent license change by Aptos Foundation (November 21, 2025) does not apply retroactively to code published under Apache 2.0.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "movelite",
|
|
3
|
-
"version": "0.1.0",
|
|
3
|
+
"version": "0.2.1-rc.0",
|
|
4
4
|
"description": "Lightweight Move VM for local development — anvil-like experience for Movement L1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"bin/"
|
|
15
15
|
],
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"movelite-darwin-arm64": "0.1.0",
|
|
18
|
-
"movelite-darwin-x64": "0.1.0",
|
|
19
|
-
"movelite-linux-x64": "0.1.0",
|
|
20
|
-
"movelite-linux-arm64": "0.1.0"
|
|
17
|
+
"movelite-darwin-arm64": "0.2.1-rc.0",
|
|
18
|
+
"movelite-darwin-x64": "0.2.1-rc.0",
|
|
19
|
+
"movelite-linux-x64": "0.2.1-rc.0",
|
|
20
|
+
"movelite-linux-arm64": "0.2.1-rc.0"
|
|
21
21
|
}
|
|
22
22
|
}
|