-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.47 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@plextv/react-native-lightning-components",
"description": "React components for react-native-lightning",
"version": "0.4.0-alpha.2",
"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"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": "./src/index.ts",
"./layout/Column": "./src/exports/layout/Column.tsx",
"./layout/Row": "./src/exports/layout/Row.tsx",
"./lists/CellContainer": "./src/exports/lists/CellContainer.tsx",
"./lists/FlashList": "./src/exports/lists/FlashList.tsx",
"./package.json": "./package.json"
},
"publishConfig": {
"provenance": true,
"access": "public",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./layout/Column": {
"import": "./dist/exports/layout/Column.js",
"require": "./dist/exports/layout/Column.cjs"
},
"./layout/Row": {
"import": "./dist/exports/layout/Row.js",
"require": "./dist/exports/layout/Row.cjs"
},
"./lists/CellContainer": {
"import": "./dist/exports/lists/CellContainer.js",
"require": "./dist/exports/lists/CellContainer.cjs"
},
"./lists/FlashList": {
"import": "./dist/exports/lists/FlashList.js",
"require": "./dist/exports/lists/FlashList.cjs"
},
"./package.json": "./package.json"
}
},
"scripts": {
"build": "tsdown --config-loader unrun",
"build:watch": "tsdown -w",
"clean": "del ./dist",
"check:types": "tsc --noEmit",
"test:unit": "vitest run --passWithNoTests"
},
"files": [
"dist"
],
"devDependencies": {
"@repo/configs": "workspace:*",
"@types/react": "19.2.2"
},
"peerDependencies": {
"@plextv/react-lightning": "workspace:^",
"@plextv/react-lightning-components": "workspace:^",
"@plextv/react-lightning-plugin-css-transform": "workspace:^",
"@plextv/react-lightning-plugin-flexbox": "workspace:^",
"@plextv/react-native-lightning": "workspace:^",
"@shopify/flash-list": "^2.2.0",
"react": "^19.2.0",
"react-native": "^0.82.0"
},
"peerDependenciesMeta": {
"@shopify/flash-list": {
"optional": true
}
},
"volta": {
"extends": "../../package.json"
}
}