-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
{
"name": "@plextv/vite-plugin-react-native-lightning",
"description": "Vite plugin for adding react-native-lightning support",
"version": "0.4.1",
"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"
},
"keywords": [
"vite-plugin",
"react-native",
"lightning-js"
],
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"build": "tsdown --config-loader unrun",
"build:watch": "tsdown -w",
"clean": "del ./dist",
"prepare": "pnpm run build",
"check:types": "tsc --noEmit",
"test:unit": "vitest run --passWithNoTests"
},
"files": [
"dist"
],
"dependencies": {
"@vitejs/plugin-react": "5.1.2"
},
"devDependencies": {
"@repo/configs": "workspace:*"
},
"peerDependencies": {
"@plextv/react-native-lightning": "workspace:^"
}
}