@markii/lua 0.7.2 → 0.7.3
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 +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# @markii/lua
|
|
2
2
|
|
|
3
|
-
A sandboxed Lua 5.4 (via `wasmoon`) execution runtime for [Markii](https://github.com/
|
|
3
|
+
A sandboxed Lua 5.4 (via `wasmoon`) execution runtime for [Markii](https://github.com/markii-org/markii)'s document scripting: an empty-environment global whitelist, capability-gated net/cache/bundle access, instruction-count and wall-clock/memory limits, and depth/size-capped Lua↔JS value marshaling. No React, no markdown parsing.
|
|
4
4
|
|
|
5
|
-
See the [repository](https://github.com/
|
|
5
|
+
See the [repository](https://github.com/markii-org/markii) for the format spec and the reference library as a whole.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markii/lua",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"description": "Sandboxed Lua 5.4 (wasmoon) execution runtime for Mark's document scripting: an empty-env global whitelist, two-tier capability-gated net/cache/bundle access, instruction-count/wall-clock/memory limits, and depth/size-capped Lua<->JS marshaling.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown",
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
],
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"author": "sadigaxund",
|
|
16
|
-
"homepage": "https://github.com/
|
|
17
|
-
"bugs": "https://github.com/
|
|
16
|
+
"homepage": "https://github.com/markii-org/markii#readme",
|
|
17
|
+
"bugs": "https://github.com/markii-org/markii/issues",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/
|
|
20
|
+
"url": "git+https://github.com/markii-org/markii.git",
|
|
21
21
|
"directory": "packages/markii-lua"
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"lint": "eslint ."
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@markii/bundle": "0.7.
|
|
48
|
-
"@markii/runtime": "0.7.
|
|
47
|
+
"@markii/bundle": "0.7.3",
|
|
48
|
+
"@markii/runtime": "0.7.3",
|
|
49
49
|
"wasmoon": "^1.16.0"
|
|
50
50
|
}
|
|
51
51
|
}
|