-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.97 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
55
56
57
58
59
60
61
62
{
"name": "@pchmn/expo-material3-theme",
"version": "1.3.2",
"description": "Manage Material 3 theme in your React Native App",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"build:ci": "CI=1 pnpm build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"husky-install": "husky install && rm -rf .git/hooks || true && ln -s ../.husky .git/hooks || true",
"prepare": "pnpm husky-install && expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"release": "semantic-release --debug"
},
"keywords": [
"react-native",
"expo",
"expo-material3-theme",
"ExpoMaterial3Theme"
],
"repository": "https://github.com/pchmn/expo-material3-theme",
"bugs": {
"url": "https://github.com/pchmn/expo-material3-theme/issues"
},
"author": "pchmn <pchmn.dev@gmail.com> (https://github.com/pchmn)",
"license": "MIT",
"homepage": "https://github.com/pchmn/expo-material3-theme#readme",
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-angular": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/color": "^3.0.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.25",
"@types/react-native": "^0.70.6",
"eslint": "^8.37.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"expo-module-scripts": "^3.0.4",
"expo-modules-core": "^1.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"semantic-release": "^20.1.3"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"dependencies": {
"@material/material-color-utilities": "^0.2.7",
"color": "^4.2.3"
}
}