forked from ionic-team/capacitor-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.72 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
{
"name": "capacitor-plugins",
"private": true,
"scripts": {
"build": "lerna run build",
"watch": "lerna run --parallel --stream watch",
"lint": "npm run scripts:prettier -- --check",
"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",
"publish:cocoapod": "lerna run publish:cocoapod --concurrency 1",
"ci:publish:nightly": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid nightly-$(date +\"%Y%m%dT%H%M%S\") --force-publish --no-changelog --no-git-tag-version --dist-tag nightly --no-push --yes",
"ci:publish:alpha": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid alpha --force-publish --dist-tag next --yes",
"ci:publish:beta": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid beta --force-publish --dist-tag next --yes",
"ci:publish:rc": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid rc --force-publish --dist-tag next --yes",
"ci:publish:latest": "lerna publish --conventional-commits --dist-tag latest --no-verify-access --yes",
"ci:publish:latest-from-pre": "lerna publish --conventional-graduate --conventional-commits --dist-tag latest --no-verify-access --force-publish --yes",
"ci:publish:dev": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid dev-$(date +\"%Y%m%dT%H%M%S\") --force-publish --no-changelog --no-git-tag-version --dist-tag dev --no-push --yes"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/http-client": "^3.0.0",
"@ionic/prettier-config": "^4.0.0",
"@types/node": "^24.10.1",
"@types/prompts": "^2.4.9",
"cross-spawn": "^7.0.6",
"glob": "^11.0.3",
"lerna": "^7.4.2",
"nx": "^16.10.0",
"prettier": "^3.6.2",
"prompts": "^2.4.2",
"typescript": "^5.9.3"
},
"prettier": "@ionic/prettier-config",
"swiftlint": {
"identifier_name": {
"min_length": 1
}
},
"workspaces": [
"action-sheet",
"app",
"app-launcher",
"browser",
"camera",
"clipboard",
"device",
"dialog",
"local-notifications",
"motion",
"network",
"preferences",
"push-notifications",
"screen-orientation",
"screen-reader",
"share",
"splash-screen",
"status-bar",
"text-zoom",
"toast"
]
}