36 lines
831 B
JSON
36 lines
831 B
JSON
{
|
|
"name": "@mixan/react-native",
|
|
"version": "0.0.1",
|
|
"module": "index.ts",
|
|
"scripts": {
|
|
"build": "rm -rf dist && tsup",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check \"**/*.{mjs,ts,md,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@mixan/sdk": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@mixan/eslint-config": "workspace:*",
|
|
"@mixan/prettier-config": "workspace:*",
|
|
"@mixan/tsconfig": "workspace:*",
|
|
"eslint": "^8.48.0",
|
|
"prettier": "^3.0.3",
|
|
"tsup": "^7.2.0",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react-native": "^0.72.5",
|
|
"expo-application": "~5.3.0",
|
|
"expo-constants": "~14.4.2"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@mixan/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@mixan/prettier-config"
|
|
}
|