-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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
{
"name": "@plextv/react-lightning-example",
"description": "Sample implementation of @plextv/react-lightning in a React app",
"version": "0.4.0-alpha.6",
"author": "Plex Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/plexinc/react-lightning.git"
},
"bugs": {
"url": "https://github.com/plexinc/react-lightning/issues/new"
},
"packageManager": "pnpm@10.12.3",
"type": "module",
"private": true,
"scripts": {
"build": "vite build",
"clean": "del ./dist",
"dev": "vite --host",
"preview": "vite preview --host --port 3333",
"check:types": "tsc --noEmit",
"test:unit": "vitest run --passWithNoTests"
},
"dependencies": {
"@lightningjs/renderer": "3.0.0-beta16",
"@plextv/react-lightning": "workspace:*",
"@plextv/react-lightning-components": "workspace:*",
"@plextv/react-lightning-plugin-css-transform": "workspace:*",
"@plextv/react-lightning-plugin-flexbox": "workspace:*",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router-dom": "7.9.4",
"swr": "2.3.6"
},
"devDependencies": {
"@plextv/vite-plugin-msdf-fontgen": "workspace:*",
"@repo/configs": "workspace:*",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-legacy": "7.2.1",
"@vitejs/plugin-react": "5.0.4",
"vite-tsconfig-paths": "5.1.4"
},
"volta": {
"extends": "../../package.json"
}
}