initial commit

This commit is contained in:
michael
2026-03-03 17:59:56 -08:00
commit 1c8d5855e6
56 changed files with 11767 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
{
"name": "@dangerousthings/react-native",
"version": "0.1.0",
"description": "React Native themed components for the Dangerous Things design system",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dangerousthings/tokens": "*"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.72.0",
"react-native-paper": ">=5.0.0",
"react-native-safe-area-context": ">=4.0.0",
"react-native-svg": ">=13.0.0"
},
"peerDependenciesMeta": {
"expo-font": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-native": "^0.72.8",
"react-native-paper": "^5.15.0",
"react-native-safe-area-context": "^5.7.0",
"react-native-svg": "^15.15.3",
"typescript": "^5.9.3"
}
}