-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.36 KB
/
package.json
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
{
"name": "numic",
"description": "Utility to manage React Native projects.",
"version": "0.0.0-development",
"repository": "github:tobua/numic",
"license": "MIT",
"author": "Matthias Giger",
"scripts": {
"build": "padua build",
"postinstall": "skip-local-postinstall dist/installation.js",
"start": "padua watch",
"templates": "folders \"./template/*\" \"update --no-install\" --output",
"test": "vitest run --pool=threads --poolOptions.threads.singleThread --dir test"
},
"padua": {
"entry": [
"installation.ts"
],
"esbuild": {
"platform": "node",
"format": "esm",
"target": "node16"
},
"tsconfig": {
"compilerOptions": {
"target": "es2022"
}
}
},
"dependencies": {
"@react-native-community/cli": "^15.0.0",
"@react-native/babel-preset": "^0.76.0",
"@react-native/eslint-config": "^0.76.0",
"@react-native/metro-config": "^0.76.0",
"@react-native/typescript-config": "^0.76.0",
"arg": "^5.0.2",
"command-exists": "^1.2.9",
"deepmerge": "^4.3.1",
"eslint": "8.57.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-glob": "^3.3.2",
"global-cache-dir": "^6.0.0",
"is-ci": "^3.0.1",
"json5": "^2.2.3",
"logua": "^3.0.3",
"pakag": "^3.1.4",
"parse-gitignore": "^2.0.0",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"semver-sort": "^1.0.0",
"skip-local-postinstall": "^2.0.4"
},
"devDependencies": {
"@types/bun": "^1.1.12",
"@types/command-exists": "^1.2.3",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"jest-fixture": "^4.1.0",
"padua": "^4.0.1",
"react-native": "^0.76.0",
"vitest": "^2.1.3"
},
"peerDependencies": {
"react-native": ">= 0.73"
},
"type": "module",
"sideEffects": true,
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./types": "./image.d.ts"
},
"bin": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"configuration/*.json",
"*.d.ts"
],
"keywords": [
"react-native",
"patch",
"utility",
"ios",
"android"
],
"prettier": "padua/configuration/.prettierrc.json",
"eslintConfig": {
"extends": "./node_modules/padua/configuration/eslint.cjs"
},
"publishConfig": {
"provenance": true
},
"engines": {
"node": ">= 18"
}
}