-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.1 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
{
"name": "@drewalth/react-native-foundation-models",
"version": "0.1.0",
"description": "React Native module for FoundationModels",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build && npm run build:plugin",
"build:plugin": "tsc --project plugin/tsconfig.json",
"clean": "expo-module clean && rm -rf plugin/build",
"lint:js": "eslint .",
"lint:swift": "swiftlint . --config .swiftlint.yml",
"lint": "npm-run-all lint:*",
"format:js": "prettier --write .",
"format:swift": "swiftformat . --config airbnb.swiftformat && swiftlint . --config .swiftlint.yml --fix --format",
"format": "npm-run-all format:*",
"test": "expo-module test",
"prepare": "husky",
"prepublishOnly": "expo-module prepublishOnly && npm run build:plugin",
"expo-module": "expo-module",
"open:ios": "xed example/ios"
},
"keywords": [
"react-native",
"expo",
"react-native-foundation-models",
"ReactNativeFoundationModels"
],
"repository": {
"type": "git",
"url": "git+https://github.com/drewalth/react-native-foundation-models.git"
},
"bugs": {
"url": "https://github.com/drewalth/react-native-foundation-models/issues"
},
"author": "drewalth <16584198+drewalth@users.noreply.github.com> (https://github.com/drewalth)",
"license": "MIT",
"homepage": "https://github.com/drewalth/react-native-foundation-models#readme",
"devDependencies": {
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"@eslint/js": "9.39.2",
"@expo/config-plugins": "^9.0.0",
"@types/jest": "30.0.0",
"@types/node": "^22.0.0",
"@types/react": "~19.1.0",
"babel-preset-expo": "54.0.9",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"expo": "^54.0.27",
"expo-module-scripts": "^5.0.8",
"husky": "9.1.7",
"jest-expo": "54.0.16",
"npm-run-all": "4.1.5",
"prettier": "3.7.4",
"react-native": "0.81.5",
"typescript-eslint": "8.53.0"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}