@vizij/runtime-react 0.0.1
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 +146 -0
- package/dist/index.d.mts +176 -0
- package/dist/index.d.ts +176 -0
- package/dist/index.js +1065 -0
- package/dist/index.mjs +1054 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vizij/runtime-react",
|
|
3
|
+
"description": "Runtime provider that bridges Vizij renderer assets with orchestrator controllers for React apps.",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/vizij-ai/vizij-web",
|
|
19
|
+
"directory": "packages/@vizij/runtime-react"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"README.md"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup src/index.ts --format esm,cjs --dts src/index.ts --external react,react-dom",
|
|
28
|
+
"dev": "tsup src/index.ts --format esm,cjs --watch --dts src/index.ts --external react,react-dom",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"lint": "pnpm --filter \"$npm_package_name\" exec eslint --ext .js,.jsx,.ts,.tsx -- .",
|
|
31
|
+
"lint:fix": "pnpm --filter \"$npm_package_name\" exec eslint --ext .js,.jsx,.ts,.tsx --fix -- .",
|
|
32
|
+
"prettier:check": "prettier --check .",
|
|
33
|
+
"prettier:write": "prettier --write .",
|
|
34
|
+
"test": "vitest --run --passWithNoTests",
|
|
35
|
+
"clean": "rm -rf dist .turbo coverage tsconfig.tsbuildinfo",
|
|
36
|
+
"reset": "rm -rf node_modules",
|
|
37
|
+
"reset:hard": "pnpm run reset && rm -f pnpm-lock.yaml package-lock.json yarn.lock",
|
|
38
|
+
"prepack": "pnpm run build && pnpm run test && pnpm run typecheck && pnpm run lint"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@vizij/orchestrator-react": "workspace:*",
|
|
42
|
+
"@vizij/render": "workspace:*",
|
|
43
|
+
"@vizij/utils": "workspace:*",
|
|
44
|
+
"@vizij/value-json": "^0.1.0"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"react": ">=18",
|
|
48
|
+
"react-dom": ">=18"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/react": "^18.3.1",
|
|
52
|
+
"@types/react-dom": "^18.3.1",
|
|
53
|
+
"prettier": "^3.4.2",
|
|
54
|
+
"tsup": "^8.0.1",
|
|
55
|
+
"typescript": "^5.5.0",
|
|
56
|
+
"vitest": "^3.2.4"
|
|
57
|
+
},
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"access": "public"
|
|
60
|
+
}
|
|
61
|
+
}
|