package.json 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. {
  2. "name": "ncore-ui-kit-mobile",
  3. "version": "1.0.0-pre-alpha.23",
  4. "description": "NİBGAT® | NCore - UI Kit for React-Native Mobile Apps.",
  5. "main": "./lib/module/index.js",
  6. "types": "./lib/typescript/src/index.d.ts",
  7. "exports": {
  8. ".": {
  9. "source": "./src/index.tsx",
  10. "types": "./lib/typescript/src/index.d.ts",
  11. "default": "./lib/module/index.js"
  12. },
  13. "./package.json": "./package.json"
  14. },
  15. "files": [
  16. "src",
  17. "lib",
  18. "android",
  19. "ios",
  20. "cpp",
  21. "*.podspec",
  22. "react-native.config.js",
  23. "!ios/build",
  24. "!android/build",
  25. "!android/gradle",
  26. "!android/gradlew",
  27. "!android/gradlew.bat",
  28. "!android/local.properties",
  29. "!**/__tests__",
  30. "!**/__fixtures__",
  31. "!**/__mocks__",
  32. "!**/.*"
  33. ],
  34. "scripts": {
  35. "example-mobile": "yarn workspace ncore-ui-kit-mobile-example-mobile",
  36. "example-web": "yarn workspace ncore-ui-kit-mobile-example-web",
  37. "clean": "del-cli lib",
  38. "lint": "eslint . --ext .ts,.tsx --fix",
  39. "prepare": "bob build && copyfiles -u 1 \"src/variants/**/*.json\" lib/typescript/src/ && node version.mjs",
  40. "typecheck": "tsc",
  41. "release": "release-it --only-version",
  42. "build": "yarn clean && yarn lint && yarn typecheck && yarn prepare && npm publish"
  43. },
  44. "keywords": [
  45. "ncore",
  46. "nibgat",
  47. "ui",
  48. "kit",
  49. "design",
  50. "system",
  51. "design-system",
  52. "component",
  53. "library",
  54. "component-library",
  55. "mobile",
  56. "web",
  57. "react-native",
  58. "android",
  59. "ios"
  60. ],
  61. "repository": {
  62. "type": "git",
  63. "url": "git+https://git.nibgat.space/nibgat-community/ncore-ui-kit-mobile.git.git"
  64. },
  65. "author": "nibgat <development@nibgat.com> (https://git.nibgat.space/nibgat-community)",
  66. "license": "MIT",
  67. "bugs": {
  68. "url": "https://git.nibgat.space/nibgat-community/ncore-ui-kit-mobile.git/issues"
  69. },
  70. "homepage": "https://git.nibgat.space/nibgat-community/ncore-ui-kit-mobile.git#readme",
  71. "publishConfig": {
  72. "registry": "https://registry.npmjs.org/"
  73. },
  74. "devDependencies": {
  75. "@react-native/babel-preset": "0.83.0",
  76. "@react-native/typescript-config": "^0.86.0",
  77. "@release-it/conventional-changelog": "10.0.1",
  78. "@types/copyfiles": "2",
  79. "@types/eslint-plugin-jsx-a11y": "6",
  80. "@types/react": "19.2.14",
  81. "@types/react-native": "0.73.0",
  82. "babel-plugin-module-resolver": "5.0.2",
  83. "copyfiles": "2.4.1",
  84. "del-cli": "6.0.0",
  85. "eslint": "9.37.0",
  86. "eslint-import-resolver-typescript": "4.4.4",
  87. "eslint-plugin-import": "2.32.0",
  88. "eslint-plugin-jsonc": "2.21.0",
  89. "eslint-plugin-jsx-a11y": "6.10.2",
  90. "eslint-plugin-local-rules": "3.0.2",
  91. "eslint-plugin-react": "7.37.5",
  92. "eslint-plugin-react-hooks": "7.0.0",
  93. "eslint-plugin-react-native": "5.0.0",
  94. "globals": "17.4.0",
  95. "jsonc-eslint-parser": "2.4.1",
  96. "react": "19.2.6",
  97. "react-native": "0.83.2",
  98. "react-native-builder-bob": "0.40.13",
  99. "release-it": "19.0.4",
  100. "turbo": "2.5.6",
  101. "typescript": "5.9.3",
  102. "typescript-eslint": "8.46.1"
  103. },
  104. "peerDependencies": {
  105. "lucide-react-native": ">= 0.577.0",
  106. "moment": "*",
  107. "ncore-context": ">= 1.0.5",
  108. "react": "*",
  109. "react-native": "*",
  110. "react-native-safe-area-context": ">= 5.7.0",
  111. "react-native-svg": ">= 15.15.3",
  112. "rrule": "*"
  113. },
  114. "workspaces": [
  115. "example/mobile",
  116. "example/web"
  117. ],
  118. "packageManager": "yarn@4.11.0",
  119. "react-native-builder-bob": {
  120. "source": "src",
  121. "output": "lib",
  122. "targets": [
  123. [
  124. "module",
  125. {
  126. "esm": true
  127. }
  128. ],
  129. [
  130. "typescript",
  131. {
  132. "project": "tsconfig.build.json"
  133. }
  134. ]
  135. ]
  136. },
  137. "release-it": {
  138. "git": {
  139. "commitMessage": "chore: release ${version}",
  140. "tagName": "v${version}"
  141. },
  142. "npm": {
  143. "publish": true
  144. },
  145. "github": {
  146. "release": true
  147. },
  148. "plugins": {
  149. "@release-it/conventional-changelog": {
  150. "preset": {
  151. "name": "angular"
  152. }
  153. }
  154. }
  155. },
  156. "create-react-native-library": {
  157. "type": "library",
  158. "languages": "js",
  159. "tools": [
  160. "release-it"
  161. ],
  162. "version": "0.57.2"
  163. },
  164. "dependencies": {
  165. "lucide-react-native": "0.577.0",
  166. "moment": "https://git.nibgat.space/nibgat-community/moment.git",
  167. "ncore-context": "1.0.5",
  168. "react-native-safe-area-context": "5.7.0",
  169. "react-native-svg": "15.15.3",
  170. "rrule": "https://git.nibgat.space/nibgat-community/rrule.git"
  171. }
  172. }