-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
33 lines (33 loc) · 1.7 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
{
"name": "root",
"private": true,
"scripts": {
"prepare": "husky",
"build": "lerna run build && yes | cp ./plugin/README.md ./README.md",
"lint": "pnpm lerna run lint",
"fmt": "pnpm lerna run fmt",
"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": {
"@capacitor/ios": "next",
"@types/node": "^20.11.25",
"husky": "^9.0.1",
"lerna": "^8.1.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"dependencies": {},
"workspaces": [
"plugin"
]
}