-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"name": "@plextv/react-lightning-example",
"version": "0.4.2",
"private": true,
"description": "Sample implementation of @plextv/react-lightning in a React app",
"bugs": {
"url": "https://github.com/plexinc/react-lightning/issues/new"
},
"license": "MIT",
"author": "Plex Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/plexinc/react-lightning.git"
},
"type": "module",
"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": "catalog:apps",
"@plextv/react-lightning": "workspace:*",
"@plextv/react-lightning-components": "workspace:*",
"@plextv/react-lightning-plugin-css-transform": "workspace:*",
"@plextv/react-lightning-plugin-flexbox": "workspace:*",
"react": "catalog:apps",
"react-dom": "catalog:apps",
"react-router-dom": "7.14.1",
"swr": "2.4.1"
},
"devDependencies": {
"@plextv/vite-plugin-msdf-fontgen": "workspace:*",
"@repo/configs": "workspace:*",
"@rolldown/plugin-babel": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-legacy": "catalog:",
"@vitejs/plugin-react": "catalog:",
"babel-plugin-react-compiler": "catalog:"
},
"volta": {
"extends": "../../package.json"
},
"packageManager": "pnpm@10.12.3",
"depcheck": {
"ignoreMatches": [
"babel-plugin-react-compiler"
]
}
}