-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 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
{
"name": "native-tide-starter-kit",
"version": "1.2.0",
"description": "A comprehensive React Native starter kit with dynamic multi-theme system, authentication setup, and best practices",
"main": "index.js",
"bin": {
"native-tide-starter-kit": "./bin/cli.js",
"create-native-tide": "./bin/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "node scripts/copy-template.js && node scripts/copy-nativewind-template.js",
"version:patch": "npm version patch && git push && git push --tags",
"version:minor": "npm version minor && git push && git push --tags",
"version:major": "npm version major && git push && git push --tags",
"publish:patch": "npm run version:patch && npm publish",
"publish:minor": "npm run version:minor && npm publish",
"publish:major": "npm run version:major && npm publish"
},
"keywords": [
"react-native",
"expo",
"starter",
"template",
"boilerplate",
"unistyles",
"nativewind",
"typescript"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saleh2001k/native-tide-starter-kit.git"
},
"homepage": "https://github.com/saleh2001k/native-tide-starter-kit#readme",
"bugs": {
"url": "https://github.com/saleh2001k/native-tide-starter-kit/issues"
},
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.6",
"ora": "^5.4.1"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"bin",
"template",
"template-nativewind",
"template-shared"
]
}