-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 KB
/
package.json
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
{
"name": "list-config-plugins",
"version": "1.1.3",
"description": "find available expo config plugins and see if they are used",
"author": {
"name": "WookieFPV (Lukas Müller)",
"url": "github.com/WookieFPV"
},
"repository": {
"type": "git",
"url": "https://github.com/WookieFPV/list-config-plugins"
},
"keywords": ["expo", "react-native", "prebuild"],
"license": "MIT",
"module": "index",
"type": "module",
"bin": {
"list-config-plugins": "dist/cli.js",
"__list-config-plugins_bash_complete": "dist/bash-complete.js"
},
"main": "dist/cli.js",
"files": ["dist"],
"scripts": {
"build": "tsup",
"build:dev": "tsup --watch",
"lint": "bunx biome check --fix",
"lint:CI": "bunx biome check",
"typecheck": "tsc",
"local-release": "npm run prepublishOnly && changeset version && changeset publish --dry",
"prepublishOnly": "bun i && bun run lint:CI && tsc && bun run build"
},
"dependencies": {
"@expo/config": "*",
"@expo/prebuild-config": "*",
"@rnx-kit/tools-workspaces": "0.2.0",
"@stricli/auto-complete": "1.1.1",
"@stricli/core": "1.1.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.12",
"@total-typescript/ts-reset": "0.6.1",
"@types/bun": "latest",
"tsup": "8.3.6",
"typescript": "5.7.3"
}
}