@renderify/runtime 0.1.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/LICENSE +21 -0
- package/README.md +62 -0
- package/dist/runtime.cjs.js +3701 -0
- package/dist/runtime.cjs.js.map +1 -0
- package/dist/runtime.d.mts +226 -0
- package/dist/runtime.d.ts +226 -0
- package/dist/runtime.esm.js +3704 -0
- package/dist/runtime.esm.js.map +1 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@renderify/runtime",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"main": "dist/runtime.cjs.js",
|
|
5
|
+
"types": "dist/runtime.d.ts",
|
|
6
|
+
"module": "dist/runtime.esm.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/runtime.d.ts",
|
|
10
|
+
"import": "./dist/runtime.esm.js",
|
|
11
|
+
"require": "./dist/runtime.cjs.js",
|
|
12
|
+
"default": "./dist/runtime.esm.js"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"author": "unadlib",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"description": "A runtime for Renderify",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"renderify",
|
|
24
|
+
"runtime",
|
|
25
|
+
"jspm",
|
|
26
|
+
"llm",
|
|
27
|
+
"preact",
|
|
28
|
+
"ui-runtime"
|
|
29
|
+
],
|
|
30
|
+
"homepage": "https://github.com/webllm/renderify#readme",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/webllm/renderify/issues"
|
|
33
|
+
},
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/webllm/renderify.git",
|
|
37
|
+
"directory": "packages/runtime"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=22.0.0"
|
|
41
|
+
},
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public",
|
|
44
|
+
"provenance": true
|
|
45
|
+
},
|
|
46
|
+
"sideEffects": false,
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"preact": "^10.28.3",
|
|
49
|
+
"preact-render-to-string": "^6.6.5",
|
|
50
|
+
"@renderify/ir": "^0.1.0",
|
|
51
|
+
"@renderify/security": "^0.1.0"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
55
|
+
"typecheck": "tsc -p tsconfig.json --pretty false --noEmit",
|
|
56
|
+
"lint": "biome lint src",
|
|
57
|
+
"clean": "rm -rf dist dist-types",
|
|
58
|
+
"build:repo": "tsup --config tsup.config.ts",
|
|
59
|
+
"watch:repo": "tsup --config tsup.config.ts --watch"
|
|
60
|
+
}
|
|
61
|
+
}
|