@vizij/render 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/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@vizij/render",
3
+ "description": "Higher-level visualization and interaction components for robot and ai faces.",
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/render"
20
+ },
21
+ "license": "MIT",
22
+ "files": [
23
+ "dist",
24
+ "README.md"
25
+ ],
26
+ "scripts": {
27
+ "build": "tsup src/index.tsx --format esm,cjs --dts src/index.tsx --external react,react-dom,three,@react-three/fiber,@react-three/drei,zustand",
28
+ "dev": "tsup src/index.tsx --format esm,cjs --watch --dts src/index.tsx --external react,react-dom,three,@react-three/fiber,@react-three/drei,zustand",
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
+ "size": "size-limit",
39
+ "prepack": "pnpm run build && pnpm run test && pnpm run typecheck && pnpm run lint && pnpm run size"
40
+ },
41
+ "dependencies": {
42
+ "@semio/ui": "*",
43
+ "@vizij/utils": "workspace:*",
44
+ "clsx": "^2.1.1",
45
+ "deep-equal": "^2.2.3",
46
+ "immer": "^10.0.3",
47
+ "lodash": "^4.17.21",
48
+ "react-error-boundary": "^4.0.13",
49
+ "three-stdlib": "^2.35.13"
50
+ },
51
+ "peerDependencies": {
52
+ "@react-three/drei": "^9.115.0",
53
+ "@react-three/fiber": "^8.17.10",
54
+ "react": ">=18",
55
+ "react-dom": ">=18",
56
+ "tailwindcss": "^4.1.3",
57
+ "three": "^0.170.0",
58
+ "zustand": "^5.0.2"
59
+ },
60
+ "devDependencies": {
61
+ "@react-three/drei": "^9.115.0",
62
+ "@react-three/fiber": "^8.17.10",
63
+ "@types/deep-equal": "^1.0.4",
64
+ "@types/lodash": "^4.17.4",
65
+ "@types/react": "^18.3.1",
66
+ "@types/three": "^0.170.0",
67
+ "@size-limit/file": "^11.2.0",
68
+ "react": "^18.3.1",
69
+ "react-dom": "^18.3.1",
70
+ "size-limit": "^11.1.7",
71
+ "three": "^0.170.0",
72
+ "zustand": "^5.0.2",
73
+ "tsup": "^8.0.1",
74
+ "typescript": "^5.5.0",
75
+ "prettier": "^3.4.2",
76
+ "vitest": "^3.2.4"
77
+ },
78
+ "size-limit": [
79
+ {
80
+ "name": "renderer",
81
+ "path": "dist/index.js",
82
+ "limit": "70 KB"
83
+ }
84
+ ],
85
+ "publishConfig": {
86
+ "access": "public"
87
+ }
88
+ }