-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "expo-plugin-aboutlibraries",
"version": "0.2.10",
"description": "A simple expo config plugin to add the aboutlibraries plugin to your app",
"keywords": [
"expo",
"expo-plugin",
"expo-config-plugin",
"expo-plugin-aboutlibraries",
"AboutLibraries",
"licenses",
"check licenses"
],
"homepage": "https://github.com/explodingcamera/esm/tree/main/packages/expo-plugin-aboutlibraries",
"repository": "https://github.com/explodingcamera/esm",
"license": "MIT",
"author": "Henry Gressmann <mail@henrygressmann.de> (https://henrygressmann.de)",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./types/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup lib/index.ts --target node20 --format cjs,esm --dts --sourcemap"
},
"dependencies": {
"@expo/config-plugins": "^9.0.16"
},
"engines": {
"node": ">=20.0.0"
}
}