-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.67 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.67 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "capacitor-plugins",
"version": "1.0.0-alpha.0",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:Captive-Studio/capacitor-plugins.git"
},
"license": "UNLICENSED",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"apply-patches": "node ./scripts/apply-patches.mjs",
"build": "turbo run build",
"ci:publish:alpha": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid alpha --dist-tag next --force-publish --no-verify-access --yes",
"ci:publish:beta": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid beta --dist-tag next --force-publish --no-verify-access --yes",
"ci:publish:dev": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid dev-$(date +\"%Y%m%dT%H%M%S\") --dist-tag dev --force-publish --no-verify-access --no-changelog --no-git-tag-version --no-push --yes",
"ci:publish:latest": "lerna publish --conventional-graduate --conventional-commits --dist-tag latest --force-publish --no-verify-access --yes",
"ci:publish:nightly": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid nightly-$(date +\"%Y%m%dT%H%M%S\") --dist-tag nightly --force-publish --no-verify-access --no-changelog --no-git-tag-version --no-push --yes",
"ci:publish:rc": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid rc --dist-tag next --force-publish --no-verify-access --yes",
"clean": "turbo run clean",
"code-analysis": ":",
"configure": "yarn mrm configure",
"develop": ":",
"format": "turbo run format --continue",
"format:root": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='packages/*/**' --fix",
"lint": "turbo run lint",
"lint:root": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='packages/*/**'",
"mrm": "npm exec --package=mrm --package=@w5s/mrm-preset@latest -- mrm --preset @w5s/mrm-preset",
"postinstall": "npx run-p \"postinstall:*\"",
"postinstall:githooks": "[ -n \"${CI:-}\" ] || git config core.hooksPath .githooks",
"prepare": "npx run-p \"npm:prepare:*\"",
"prepare:empty": ":",
"publish:cocoapod": "lerna run publish:cocoapod --concurrency 1",
"release": "[ -n \"${CI:-}\" ] && lerna publish --yes || lerna publish",
"rescue": "git clean -fdx;yarn install",
"set-capacitor-version": "node ./scripts/set-capacitor-version.mjs",
"spellcheck": "turbo run spellcheck",
"spellcheck:root": "cspell --no-progress '**' --exclude='packages/*/**'",
"test": "turbo run test",
"toggle-local": "node ./scripts/toggle-local.mjs",
"update-all": "node ./scripts/update-all.mjs",
"validate": "turbo run build lint test",
"watch": "lerna run --parallel --stream watch"
},
"commitlint": {
"extends": [
"@captive/commitlint-config"
]
},
"lint-staged": {
"*.{json,jsonc,json5}": [
"eslint"
],
"*.js?(x)": [
"eslint"
],
"*.ts?(x)": [
"eslint"
],
"*.{yml,yaml}": [
"eslint"
]
},
"eslintConfig": {
"extends": [
"@captive/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/naming-convention": "off",
"no-await-in-loop": "off",
"no-global-assign": "off",
"no-unused-expressions": "off",
"no-use-before-define": "off",
"no-undef": "off",
"no-console": "off",
"no-unused-vars": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"max-classes-per-file": "off",
"promise/prefer-await-to-then": "off",
"unicorn/prefer-module": "off",
"unicorn/no-await-expression-member": "off",
"unicorn/no-this-assignment": "off",
"yml/no-empty-document": "off"
}
},
"devDependencies": {
"@actions/core": "1.11.1",
"@captive/commitlint-config": "2.1.15",
"@captive/eslint-config": "2.0.28",
"@captive/ts-config": "2.4.1",
"@ionic/swiftlint-config": "1.1.2",
"@types/node": "latest",
"@types/prompts": "2.4.9",
"conventional-changelog-gitmoji-config": "latest",
"cspell": "latest",
"eslint": "8.57.1",
"esm": "3.2.25",
"lerna": "8.2.4",
"npm-run-all2": "8.0.4",
"prettier": "3.6.2",
"prettier-plugin-java": "2.7.5",
"prompts": "2.4.2",
"rimraf": "5.0.10",
"rollup": "3.30.0",
"swiftlint": "1.0.2",
"turbo": "1.13.4",
"typescript": "5.9.3"
},
"packageManager": "yarn@4.10.3",
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.0.0"
},
"volta": {
"node": "20.12.1"
}
}