-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
48
49
50
51
52
53
54
{
"name": "@roninoss/plugin-primitives",
"version": "0.0.3",
"description": "A collection of type-safe config plugin primitives that handle common native configuration tasks",
"main": "build/index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "expo-module clean",
"lint": "expo-module lint",
"prepare": "expo-module clean && yarn run build",
"prepublishOnly": "expo-module prepublishOnly",
"test": "jest",
"typecheck": "expo-module typecheck"
},
"repository": {
"type": "git",
"url": "https://github.com/roninoss/plugin-primitives"
},
"keywords": [
"json",
"expo",
"react-native",
"react"
],
"license": "MIT",
"files": [
"build"
],
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@bacons/xcode": "1.0.0-alpha.15",
"@expo/config-types": "^51.0.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"expo-module-scripts": "^3.3.0",
"expo-modules-core": "^1.12.20",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"xcode": "^3.0.1"
}
}