forked from ionic-team/capacitor-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 3.08 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
{
"name": "capacitor-plugins",
"private": true,
"scripts": {
"build": "lerna run build",
"watch": "lerna run --parallel --stream watch",
"lint": "npm run scripts:prettier -- --check && lerna run lint",
"fmt": "npm run scripts:prettier -- --write && lerna run fmt",
"scripts:prettier": "npx prettier \"scripts/**/*.mjs\"",
"apply-patches": "node ./scripts/apply-patches.mjs",
"toggle-local": "node ./scripts/toggle-local.mjs",
"update-all": "node ./scripts/update-all.mjs",
"set-capacitor-version": "node ./scripts/set-capacitor-version.mjs",
"set-settings-gradle-for-monorepo": "node ./scripts/monorepo-tools/android-settings-gradle-fix.mjs",
"set-podfiles-for-monorepo": "node ./scripts/monorepo-tools/ios-podfile-fix.mjs",
"publish:cocoapod": "lerna run publish:cocoapod --concurrency 1",
"ci:publish:nightly": "lerna version prerelease --conventional-commits --conventional-prerelease --preid nightly-$(date +\"%Y%m%dT%H%M%S\") --force-publish --no-changelog --no-git-tag-version --no-push --yes && lerna exec -- npm publish --tag nightly --provenance",
"ci:publish:alpha": "lerna version prerelease --conventional-commits --conventional-prerelease --preid alpha --force-publish --yes && lerna exec -- npm publish --tag next --provenance",
"ci:publish:beta": "lerna version prerelease --conventional-commits --conventional-prerelease --preid beta --force-publish --yes && lerna exec -- npm publish --tag next --provenance",
"ci:publish:rc": "lerna version prerelease --conventional-commits --conventional-prerelease --preid rc --force-publish --yes && lerna exec -- npm publish --tag next --provenance",
"ci:publish:latest": "lerna version --conventional-commits --yes && lerna exec -- npm publish --tag latest --provenance",
"ci:publish:latest-from-pre": "lerna version --conventional-graduate --conventional-commits --force-publish --yes && lerna exec -- npm publish --tag latest --provenance",
"ci:publish:dev": "lerna version prerelease --conventional-commits --conventional-prerelease --preid dev-$(date +\"%Y%m%dT%H%M%S\") --force-publish --no-changelog --no-git-tag-version --no-push --yes && lerna exec -- npm publish --tag dev --provenance"
},
"devDependencies": {
"@types/node": "~18.11.19",
"@actions/core": "^1.9.1",
"@ionic/prettier-config": "^1.0.1",
"@types/prompts": "^2.0.8",
"cross-spawn": "^7.0.3",
"esm": "^3.2.25",
"lerna": "^7.1.3",
"nx": "^16.3.1",
"prettier": "~2.3.0",
"prompts": "^2.3.2",
"glob": "^10.3.3"
},
"prettier": "@ionic/prettier-config",
"swiftlint": {
"identifier_name": {
"min_length": 1
}
},
"workspaces": [
"action-sheet",
"app",
"app-launcher",
"browser",
"camera",
"clipboard",
"device",
"dialog",
"filesystem",
"geolocation",
"google-maps",
"haptics",
"keyboard",
"local-notifications",
"motion",
"network",
"preferences",
"push-notifications",
"screen-orientation",
"screen-reader",
"share",
"splash-screen",
"status-bar",
"text-zoom",
"toast"
]
}