-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 974 Bytes
/
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
{
"name": "router-layer-outer",
"version": "1.0.0",
"main": "build/index.js",
"description": "turn simple layouts into actual expo router layouts",
"keywords": [],
"homepage": "https://github.com/luvrsofllamas/router-layer-outer/blob/main/README.md",
"author": "Keith Kurak",
"license": "MIT",
"bin": "./build/index.js",
"files": [
"build"
],
"scripts": {
"run:dev": "node ./build/index.js",
"build": "ncc build ./src/index.ts -o build/",
"lint": "expo-module lint",
"typecheck": "expo-module typecheck",
"test": "expo-module test",
"watch": "yarn run build -w"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"chalk": "^5.1.0",
"commander": "^9.4.1",
"csv": "^6.3.8",
"expo-module-scripts": "^3.3.0",
"getenv": "^1.0.0",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"ora": "^6.1.2",
"prompts": "^2.4.2"
}
}