-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.6 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
{
"name": "create-react-native-library",
"version": "0.62.0",
"description": "CLI to scaffold React Native libraries",
"keywords": [
"react-native",
"library",
"module",
"view",
"component",
"ios",
"android",
"web",
"expo"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/callstack/react-native-builder-bob.git",
"directory": "packages/create-react-native-library"
},
"bugs": {
"url": "https://github.com/callstack/react-native-builder-bob/issues"
},
"homepage": "https://oss.callstack.com/react-native-builder-bob/create",
"type": "module",
"exports": {
".": "./lib/src/index.js"
},
"bin": "bin/create-react-native-library",
"files": [
"lib",
"templates"
],
"engines": {
"node": "^20.19.0 || ^22.12.0 || >= 23.4.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepare": "del-cli lib .tsbuildinfo && tsc"
},
"dependencies": {
"cross-spawn": "^7.0.6",
"dedent": "^1.7.2",
"ejs": "^5.0.1",
"fs-extra": "^11.3.4",
"get-latest-version": "^6.0.1",
"github-username": "^9.0.0",
"kleur": "^4.1.5",
"ora": "^9.3.0",
"pigment": "^0.4.4",
"typescript": "^5.8.3",
"validate-npm-package-name": "^7.0.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@types/cross-spawn": "^6.0.6",
"@types/dedent": "^0.7.2",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/validate-npm-package-name": "^4.0.2",
"del-cli": "^7.0.0"
}
}