-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.63 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
{
"name": "@sphereon/musap-react-native-parent",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/Sphereon-Opensource/musap-react-native",
"author": "Sphereon International",
"license": "Apache-2.0",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/musapRnKmsTesterApp"
],
"nohoist": [
"**/@sphereon/musap-native",
"**/@sphereon/musap-native/**"
]
},
"nmHoistingLimits": {
"*": "dependencies",
"react-native": "workspaces"
},
"engines": {
"yarn": ">=4.0.0"
},
"resolutions": {
"@sphereon/musap-react-native": "0.0.1-next.154"
},
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"prettier": "prettier --write \"{packages,__tests__,!dist}/**/*.{ts,tsx,js,json,md,yml}\"",
"publish:latest": "lerna publish --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest --registry https://registry.npmjs.org",
"publish:next": "lerna publish --conventional-prerelease --force-publish --canary --no-git-tag-version --include-merged-tags --preid next --pre-dist-tag next --yes --registry https://registry.npmjs.org",
"publish:unstable": "lerna publish --conventional-prerelease --force-publish --canary --no-git-tag-version --include-merged-tags --preid unstable --pre-dist-tag unstable --yes --registry https://registry.npmjs.org"
},
"devDependencies": {
"@react-native-community/cli": "^13.6.9",
"@react-native/typescript-config": "^0.74.85",
"lerna": "^8.1.6",
"prettier": "^3.3.2",
"typescript": "5.5"
},
"packageManager": "[email protected]"
}