forked from ahmedbna/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.96 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"$schema": "https://json.schemastore.org/package.json",
"name": "bna-ui",
"version": "2.0.4",
"type": "module",
"description": "BNA UI - Expo React Native CLI, UI Components Library",
"main": "dist/index.js",
"bin": {
"bna-ui": "bin/bna-ui.js"
},
"scripts": {
"build": "npm run clean && tsc && npm run copy-templates && npm run copy-registry",
"copy-templates": "cp -r templates dist/ || xcopy /E /I templates dist\\templates",
"copy-registry": "cp -r src/registry dist/",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"smoke:templates": "tsc --noEmit -p tools/template-smoke/tsconfig.json",
"smoke:registry": "node tools/registry-smoke/run.mjs",
"smoke:registry:self-test": "node tools/registry-smoke/run.mjs --self-test"
},
"keywords": [
"react-native",
"expo",
"ui",
"cli",
"starter",
"template",
"typescript"
],
"author": "Ahmed BNA <hi@ahmedbna.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ahmedbna/ui"
},
"bugs": {
"url": "https://github.com/ahmedbna/ui/issues"
},
"homepage": "https://ui.ahmedbna.com/",
"files": [
"dist/**/*",
"bin/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^30.0.0",
"@types/node": "^20.8.0",
"@types/react": "~19.2.10",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"expo": "^57.0.0",
"expo-audio": "~57.0.0",
"expo-blur": "~57.0.0",
"expo-camera": "~57.0.0",
"expo-document-picker": "~57.0.0",
"expo-haptics": "~57.0.0",
"expo-image": "~57.0.0",
"expo-image-picker": "~57.0.1",
"expo-linear-gradient": "~57.0.0",
"expo-media-library": "~57.0.0",
"expo-video": "~57.0.0",
"expo-web-browser": "~57.0.0",
"jest": "^30.2.0",
"lucide-react-native": "^1.23.0",
"prettier": "3.7.4",
"react": "19.2.3",
"react-native": "0.86.0",
"react-native-gesture-handler": "~2.32.0",
"react-native-reanimated": "4.5.0",
"react-native-safe-area-context": "~5.7.0",
"react-native-svg": "15.15.4",
"ts-jest": "^29.4.6",
"typescript": "^5.2.2"
}
}