-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.29 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.29 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
{
"name": "react-native-builder-bob",
"version": "0.40.15",
"description": "CLI to build JavaScript files for React Native libraries",
"keywords": [
"react-native",
"library",
"build"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/callstack/react-native-builder-bob.git",
"directory": "packages/react-native-builder-bob"
},
"bugs": {
"url": "https://github.com/callstack/react-native-builder-bob/issues"
},
"homepage": "https://callstack.github.io/react-native-builder-bob/build",
"main": "lib/index.js",
"bin": {
"bob": "bin/bob"
},
"files": [
"bin",
"lib",
"babel-preset.js",
"metro-config.js",
"babel-config.js"
],
"engines": {
"node": "^20.19.0 || ^22.12.0 || >= 23.4.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepare": "babel --extensions .ts,.tsx src --out-dir lib --source-maps --delete-dir-on-start",
"test": "vitest"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-flow-strip-types": "^7.26.5",
"@babel/plugin-transform-strict-mode": "^7.24.7",
"@babel/preset-env": "^7.25.2",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"arktype": "^2.1.15",
"babel-plugin-syntax-hermes-parser": "^0.28.0",
"browserslist": "^4.20.4",
"cross-spawn": "^7.0.3",
"dedent": "^0.7.0",
"del": "^6.1.1",
"escape-string-regexp": "^4.0.0",
"fs-extra": "^10.1.0",
"glob": "^10.5.0",
"is-git-dirty": "^2.0.1",
"json5": "^2.2.1",
"kleur": "^4.1.4",
"prompts": "^2.4.2",
"react-native-monorepo-config": "^0.1.8",
"which": "^2.0.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@types/babel__core": "^7.1.19",
"@types/browserslist": "^4.15.0",
"@types/cross-spawn": "^6.0.2",
"@types/dedent": "^0.7.0",
"@types/del": "^4.0.0",
"@types/fs-extra": "^9.0.13",
"@types/json5": "^2.2.0",
"@types/mock-fs": "^4.13.4",
"@types/prompts": "^2.0.14",
"@types/which": "^2.0.1",
"@types/yargs": "^17.0.10",
"concurrently": "^7.2.2",
"metro-config": "^0.82.4",
"mock-fs": "^5.2.0",
"mock-stdin": "^1.0.0",
"vitest": "^3.1.1"
}
}