@markii/runtime 0.7.2 → 0.8.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 +2 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# @markii/runtime
|
|
2
2
|
|
|
3
|
-
Host-side scripting glue for [Markii](https://github.com/
|
|
3
|
+
Host-side scripting glue for [Markii](https://github.com/markii-org/markii) documents: a null-prototype value store and `runDocumentScripts`, which executes a document's embedded scripts and gates execution by trigger tier (auto/scheduled triggers stay read-only). Framework-agnostic — the actual script executor (e.g. `@markii/lua`) is injected by the host.
|
|
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/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Host-side scripting glue for Mark (.mk.md): a null-proto value store and document-script execution with trigger-tier gating (auto/scheduled stay read-only). Framework-agnostic; the script executor is injected by the host (e.g. @markii/lua).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown",
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
],
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"author": "sadigaxund",
|
|
14
|
-
"homepage": "https://github.com/
|
|
15
|
-
"bugs": "https://github.com/
|
|
14
|
+
"homepage": "https://github.com/markii-org/markii#readme",
|
|
15
|
+
"bugs": "https://github.com/markii-org/markii/issues",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/
|
|
18
|
+
"url": "git+https://github.com/markii-org/markii.git",
|
|
19
19
|
"directory": "packages/markii-runtime"
|
|
20
20
|
},
|
|
21
21
|
"type": "module",
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
"lint": "eslint ."
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@markii/core": "0.
|
|
45
|
+
"@markii/core": "0.8.0"
|
|
46
46
|
}
|
|
47
47
|
}
|