-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·69 lines (69 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "openvj",
"private": false,
"version": "0.1.0",
"description": "Real-time visual performance and projection mapping in your browser",
"type": "module",
"author": "OpenVJ Contributors",
"license": "MIT",
"engines": {
"node": ">=20.19.0 <21 || >=22.12.0 <23"
},
"repository": {
"type": "git",
"url": "https://github.com/kniessner/openvj.git"
},
"bugs": {
"url": "https://github.com/kniessner/openvj/issues"
},
"homepage": "https://github.com/kniessner/openvj#readme",
"keywords": [
"vj",
"projection-mapping",
"threejs",
"webgl",
"video",
"live-visuals",
"react",
"generative-art",
"shaders",
"glsl"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --passWithNoTests",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@react-three/drei": "^9.92.0",
"@react-three/fiber": "^8.15.0",
"osc-js": "^2.4.0",
"p5": "^1.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.160.0",
"webmidi": "^3.1.0",
"zustand": "^4.4.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/p5": "^1.7.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.2.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}