appium-ios-remotexpc 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (213) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/build/src/base-plist-service.d.ts +51 -0
  3. package/build/src/base-plist-service.d.ts.map +1 -0
  4. package/build/src/base-plist-service.js +61 -0
  5. package/build/src/base-socket-service.d.ts +15 -0
  6. package/build/src/base-socket-service.d.ts.map +1 -0
  7. package/build/src/base-socket-service.js +46 -0
  8. package/build/src/index.d.ts +9 -0
  9. package/build/src/index.d.ts.map +1 -0
  10. package/build/src/index.js +7 -0
  11. package/build/src/lib/apple-tv/constants.d.ts +77 -0
  12. package/build/src/lib/apple-tv/constants.d.ts.map +1 -0
  13. package/build/src/lib/apple-tv/constants.js +106 -0
  14. package/build/src/lib/apple-tv/encryption/chacha20-poly1305.d.ts +22 -0
  15. package/build/src/lib/apple-tv/encryption/chacha20-poly1305.d.ts.map +1 -0
  16. package/build/src/lib/apple-tv/encryption/chacha20-poly1305.js +97 -0
  17. package/build/src/lib/apple-tv/encryption/ed25519.d.ts +16 -0
  18. package/build/src/lib/apple-tv/encryption/ed25519.d.ts.map +1 -0
  19. package/build/src/lib/apple-tv/encryption/ed25519.js +93 -0
  20. package/build/src/lib/apple-tv/encryption/hkdf.d.ts +18 -0
  21. package/build/src/lib/apple-tv/encryption/hkdf.d.ts.map +1 -0
  22. package/build/src/lib/apple-tv/encryption/hkdf.js +73 -0
  23. package/build/src/lib/apple-tv/encryption/index.d.ts +5 -0
  24. package/build/src/lib/apple-tv/encryption/index.d.ts.map +1 -0
  25. package/build/src/lib/apple-tv/encryption/index.js +4 -0
  26. package/build/src/lib/apple-tv/encryption/opack2.d.ts +57 -0
  27. package/build/src/lib/apple-tv/encryption/opack2.d.ts.map +1 -0
  28. package/build/src/lib/apple-tv/encryption/opack2.js +203 -0
  29. package/build/src/lib/apple-tv/errors.d.ts +17 -0
  30. package/build/src/lib/apple-tv/errors.d.ts.map +1 -0
  31. package/build/src/lib/apple-tv/errors.js +30 -0
  32. package/build/src/lib/apple-tv/tlv/decoder.d.ts +19 -0
  33. package/build/src/lib/apple-tv/tlv/decoder.d.ts.map +1 -0
  34. package/build/src/lib/apple-tv/tlv/decoder.js +49 -0
  35. package/build/src/lib/apple-tv/tlv/encoder.d.ts +10 -0
  36. package/build/src/lib/apple-tv/tlv/encoder.d.ts.map +1 -0
  37. package/build/src/lib/apple-tv/tlv/encoder.js +20 -0
  38. package/build/src/lib/apple-tv/tlv/index.d.ts +4 -0
  39. package/build/src/lib/apple-tv/tlv/index.d.ts.map +1 -0
  40. package/build/src/lib/apple-tv/tlv/index.js +3 -0
  41. package/build/src/lib/apple-tv/tlv/pairing-tlv.d.ts +14 -0
  42. package/build/src/lib/apple-tv/tlv/pairing-tlv.d.ts.map +1 -0
  43. package/build/src/lib/apple-tv/tlv/pairing-tlv.js +27 -0
  44. package/build/src/lib/apple-tv/types.d.ts +36 -0
  45. package/build/src/lib/apple-tv/types.d.ts.map +1 -0
  46. package/build/src/lib/apple-tv/types.js +1 -0
  47. package/build/src/lib/apple-tv/utils/buffer-utils.d.ts +40 -0
  48. package/build/src/lib/apple-tv/utils/buffer-utils.d.ts.map +1 -0
  49. package/build/src/lib/apple-tv/utils/buffer-utils.js +76 -0
  50. package/build/src/lib/apple-tv/utils/index.d.ts +3 -0
  51. package/build/src/lib/apple-tv/utils/index.d.ts.map +1 -0
  52. package/build/src/lib/apple-tv/utils/index.js +2 -0
  53. package/build/src/lib/apple-tv/utils/uuid-generator.d.ts +9 -0
  54. package/build/src/lib/apple-tv/utils/uuid-generator.d.ts.map +1 -0
  55. package/build/src/lib/apple-tv/utils/uuid-generator.js +36 -0
  56. package/build/src/lib/lockdown/index.d.ts +87 -0
  57. package/build/src/lib/lockdown/index.d.ts.map +1 -0
  58. package/build/src/lib/lockdown/index.js +324 -0
  59. package/build/src/lib/pair-record/index.d.ts +3 -0
  60. package/build/src/lib/pair-record/index.d.ts.map +1 -0
  61. package/build/src/lib/pair-record/index.js +2 -0
  62. package/build/src/lib/pair-record/pair-record.d.ts +48 -0
  63. package/build/src/lib/pair-record/pair-record.d.ts.map +1 -0
  64. package/build/src/lib/pair-record/pair-record.js +85 -0
  65. package/build/src/lib/plist/binary-plist-creator.d.ts +14 -0
  66. package/build/src/lib/plist/binary-plist-creator.d.ts.map +1 -0
  67. package/build/src/lib/plist/binary-plist-creator.js +475 -0
  68. package/build/src/lib/plist/binary-plist-parser.d.ts +14 -0
  69. package/build/src/lib/plist/binary-plist-parser.d.ts.map +1 -0
  70. package/build/src/lib/plist/binary-plist-parser.js +449 -0
  71. package/build/src/lib/plist/constants.d.ts +36 -0
  72. package/build/src/lib/plist/constants.d.ts.map +1 -0
  73. package/build/src/lib/plist/constants.js +43 -0
  74. package/build/src/lib/plist/index.d.ts +14 -0
  75. package/build/src/lib/plist/index.d.ts.map +1 -0
  76. package/build/src/lib/plist/index.js +16 -0
  77. package/build/src/lib/plist/length-based-splitter.d.ts +43 -0
  78. package/build/src/lib/plist/length-based-splitter.d.ts.map +1 -0
  79. package/build/src/lib/plist/length-based-splitter.js +228 -0
  80. package/build/src/lib/plist/plist-creator.d.ts +8 -0
  81. package/build/src/lib/plist/plist-creator.d.ts.map +1 -0
  82. package/build/src/lib/plist/plist-creator.js +33 -0
  83. package/build/src/lib/plist/plist-decoder.d.ts +25 -0
  84. package/build/src/lib/plist/plist-decoder.d.ts.map +1 -0
  85. package/build/src/lib/plist/plist-decoder.js +103 -0
  86. package/build/src/lib/plist/plist-encoder.d.ts +10 -0
  87. package/build/src/lib/plist/plist-encoder.d.ts.map +1 -0
  88. package/build/src/lib/plist/plist-encoder.js +27 -0
  89. package/build/src/lib/plist/plist-parser.d.ts +9 -0
  90. package/build/src/lib/plist/plist-parser.d.ts.map +1 -0
  91. package/build/src/lib/plist/plist-parser.js +109 -0
  92. package/build/src/lib/plist/plist-service.d.ts +86 -0
  93. package/build/src/lib/plist/plist-service.d.ts.map +1 -0
  94. package/build/src/lib/plist/plist-service.js +180 -0
  95. package/build/src/lib/plist/unified-plist-creator.d.ts +9 -0
  96. package/build/src/lib/plist/unified-plist-creator.d.ts.map +1 -0
  97. package/build/src/lib/plist/unified-plist-creator.js +14 -0
  98. package/build/src/lib/plist/unified-plist-parser.d.ts +8 -0
  99. package/build/src/lib/plist/unified-plist-parser.d.ts.map +1 -0
  100. package/build/src/lib/plist/unified-plist-parser.js +23 -0
  101. package/build/src/lib/plist/utils.d.ts +97 -0
  102. package/build/src/lib/plist/utils.d.ts.map +1 -0
  103. package/build/src/lib/plist/utils.js +287 -0
  104. package/build/src/lib/remote-xpc/constants.d.ts +20 -0
  105. package/build/src/lib/remote-xpc/constants.d.ts.map +1 -0
  106. package/build/src/lib/remote-xpc/constants.js +21 -0
  107. package/build/src/lib/remote-xpc/handshake-frames.d.ts +74 -0
  108. package/build/src/lib/remote-xpc/handshake-frames.d.ts.map +1 -0
  109. package/build/src/lib/remote-xpc/handshake-frames.js +285 -0
  110. package/build/src/lib/remote-xpc/handshake.d.ts +14 -0
  111. package/build/src/lib/remote-xpc/handshake.d.ts.map +1 -0
  112. package/build/src/lib/remote-xpc/handshake.js +95 -0
  113. package/build/src/lib/remote-xpc/remote-xpc-connection.d.ts +55 -0
  114. package/build/src/lib/remote-xpc/remote-xpc-connection.d.ts.map +1 -0
  115. package/build/src/lib/remote-xpc/remote-xpc-connection.js +365 -0
  116. package/build/src/lib/remote-xpc/xpc-protocol.d.ts +22 -0
  117. package/build/src/lib/remote-xpc/xpc-protocol.d.ts.map +1 -0
  118. package/build/src/lib/remote-xpc/xpc-protocol.js +368 -0
  119. package/build/src/lib/tunnel/index.d.ts +69 -0
  120. package/build/src/lib/tunnel/index.d.ts.map +1 -0
  121. package/build/src/lib/tunnel/index.js +205 -0
  122. package/build/src/lib/tunnel/packet-stream-client.d.ts +46 -0
  123. package/build/src/lib/tunnel/packet-stream-client.d.ts.map +1 -0
  124. package/build/src/lib/tunnel/packet-stream-client.js +152 -0
  125. package/build/src/lib/tunnel/packet-stream-server.d.ts +37 -0
  126. package/build/src/lib/tunnel/packet-stream-server.d.ts.map +1 -0
  127. package/build/src/lib/tunnel/packet-stream-server.js +109 -0
  128. package/build/src/lib/tunnel/tunnel-api-client.d.ts +85 -0
  129. package/build/src/lib/tunnel/tunnel-api-client.d.ts.map +1 -0
  130. package/build/src/lib/tunnel/tunnel-api-client.js +207 -0
  131. package/build/src/lib/tunnel/tunnel-registry-server.d.ts +68 -0
  132. package/build/src/lib/tunnel/tunnel-registry-server.d.ts.map +1 -0
  133. package/build/src/lib/tunnel/tunnel-registry-server.js +351 -0
  134. package/build/src/lib/types.d.ts +238 -0
  135. package/build/src/lib/types.d.ts.map +1 -0
  136. package/build/src/lib/types.js +4 -0
  137. package/build/src/lib/usbmux/index.d.ts +177 -0
  138. package/build/src/lib/usbmux/index.d.ts.map +1 -0
  139. package/build/src/lib/usbmux/index.js +490 -0
  140. package/build/src/lib/usbmux/usbmux-decoder.d.ts +19 -0
  141. package/build/src/lib/usbmux/usbmux-decoder.d.ts.map +1 -0
  142. package/build/src/lib/usbmux/usbmux-decoder.js +38 -0
  143. package/build/src/lib/usbmux/usbmux-encoder.d.ts +12 -0
  144. package/build/src/lib/usbmux/usbmux-encoder.d.ts.map +1 -0
  145. package/build/src/lib/usbmux/usbmux-encoder.js +32 -0
  146. package/build/src/service-connection.d.ts +34 -0
  147. package/build/src/service-connection.d.ts.map +1 -0
  148. package/build/src/service-connection.js +51 -0
  149. package/build/src/services/index.d.ts +6 -0
  150. package/build/src/services/index.d.ts.map +1 -0
  151. package/build/src/services/index.js +5 -0
  152. package/build/src/services/ios/base-service.d.ts +35 -0
  153. package/build/src/services/ios/base-service.d.ts.map +1 -0
  154. package/build/src/services/ios/base-service.js +55 -0
  155. package/build/src/services/ios/diagnostic-service/index.d.ts +46 -0
  156. package/build/src/services/ios/diagnostic-service/index.d.ts.map +1 -0
  157. package/build/src/services/ios/diagnostic-service/index.js +169 -0
  158. package/build/src/services/ios/diagnostic-service/keys.d.ts +5 -0
  159. package/build/src/services/ios/diagnostic-service/keys.d.ts.map +1 -0
  160. package/build/src/services/ios/diagnostic-service/keys.js +770 -0
  161. package/build/src/services/ios/syslog-service/index.d.ts +91 -0
  162. package/build/src/services/ios/syslog-service/index.d.ts.map +1 -0
  163. package/build/src/services/ios/syslog-service/index.js +323 -0
  164. package/build/src/services/ios/tunnel-service/index.d.ts +17 -0
  165. package/build/src/services/ios/tunnel-service/index.d.ts.map +1 -0
  166. package/build/src/services/ios/tunnel-service/index.js +57 -0
  167. package/build/src/services.d.ts +14 -0
  168. package/build/src/services.d.ts.map +1 -0
  169. package/build/src/services.js +48 -0
  170. package/package.json +12 -3
  171. package/src/lib/apple-tv/constants.ts +42 -0
  172. package/src/lib/apple-tv/encryption/chacha20-poly1305.ts +147 -0
  173. package/src/lib/apple-tv/encryption/ed25519.ts +126 -0
  174. package/src/lib/apple-tv/encryption/hkdf.ts +95 -0
  175. package/src/lib/apple-tv/encryption/index.ts +11 -0
  176. package/src/lib/apple-tv/encryption/opack2.ts +257 -0
  177. package/.github/dependabot.yml +0 -38
  178. package/.github/workflows/format-check.yml +0 -43
  179. package/.github/workflows/lint-and-build.yml +0 -40
  180. package/.github/workflows/pr-title.yml +0 -16
  181. package/.github/workflows/publish.js.yml +0 -43
  182. package/.github/workflows/test-validation.yml +0 -40
  183. package/.mocharc.json +0 -8
  184. package/.prettierignore +0 -3
  185. package/.prettierrc +0 -17
  186. package/.releaserc +0 -48
  187. package/assets/images/ios-arch.png +0 -0
  188. package/eslint.config.js +0 -45
  189. package/npm-shrinkwrap.json +0 -2711
  190. package/test/integration/diagnostics-test.ts +0 -44
  191. package/test/integration/read-pair-record-test.ts +0 -39
  192. package/test/integration/tunnel-test.ts +0 -104
  193. package/test/unit/apple-tv/tlv/decoder.spec.ts +0 -144
  194. package/test/unit/apple-tv/tlv/encoder.spec.ts +0 -91
  195. package/test/unit/apple-tv/tlv/pairing-tlv.spec.ts +0 -101
  196. package/test/unit/apple-tv/tlv/tlv-integration.spec.ts +0 -146
  197. package/test/unit/apple-tv/utils/buffer-utils.spec.ts +0 -74
  198. package/test/unit/apple-tv/utils/uuid-generator.spec.ts +0 -39
  199. package/test/unit/fixtures/index.ts +0 -88
  200. package/test/unit/fixtures/usbmuxconnectmessage.bin +0 -0
  201. package/test/unit/fixtures/usbmuxlistdevicemessage.bin +0 -0
  202. package/test/unit/plist/error-handling.spec.ts +0 -101
  203. package/test/unit/plist/fixtures/sample.binary.plist +0 -0
  204. package/test/unit/plist/fixtures/sample.xml.plist +0 -38
  205. package/test/unit/plist/plist-parser.spec.ts +0 -283
  206. package/test/unit/plist/plist.spec.ts +0 -205
  207. package/test/unit/plist/tag-position-handling.spec.ts +0 -90
  208. package/test/unit/plist/unified-plist-parser.spec.ts +0 -227
  209. package/test/unit/plist/utils.spec.ts +0 -249
  210. package/test/unit/plist/xml-cleaning.spec.ts +0 -60
  211. package/test/unit/tunnel/tunnel-registry-server.spec.ts +0 -194
  212. package/test/unit/usbmux/usbmux-specs.ts +0 -71
  213. package/tsconfig.json +0 -36
@@ -1,43 +0,0 @@
1
- name: Format Check
2
-
3
- on:
4
- push:
5
- branches: [ main ]
6
- pull_request:
7
- branches: [ main ]
8
-
9
- jobs:
10
- prepare_matrix:
11
- runs-on: ubuntu-latest
12
- outputs:
13
- versions: ${{ steps.generate-matrix.outputs.lts }}
14
- steps:
15
- - name: Select all current LTS versions of Node.js
16
- id: generate-matrix
17
- uses: msimerson/node-lts-versions@v1
18
-
19
- format-check:
20
- runs-on: macos-latest
21
- needs:
22
- - prepare_matrix
23
- strategy:
24
- fail-fast: false
25
- matrix:
26
- node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
27
- steps:
28
- - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
29
- - name: Use Node.js ${{ matrix.node-version }}
30
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
31
- with:
32
- node-version: ${{ matrix.node-version }}
33
- - name: Install dependencies
34
- run: npm install
35
-
36
- - name: Check formatting
37
- # Run prettier in check mode (doesn't modify files)
38
- run: npm run format:check
39
-
40
- - name: Format instructions (if check fails)
41
- if: ${{ failure() }}
42
- run: |
43
- echo "::error::Formatting issues detected. Run 'npm run format' locally to fix."
@@ -1,40 +0,0 @@
1
- name: Lint and Build
2
-
3
- on:
4
- push:
5
- branches: [ main ]
6
- pull_request:
7
- branches: [ main ]
8
-
9
- jobs:
10
- prepare_matrix:
11
- runs-on: ubuntu-latest
12
- outputs:
13
- versions: ${{ steps.generate-matrix.outputs.lts }}
14
- steps:
15
- - name: Select all current LTS versions of Node.js
16
- id: generate-matrix
17
- uses: msimerson/node-lts-versions@v1
18
-
19
- lint-and-build:
20
- runs-on: macos-latest
21
- needs:
22
- - prepare_matrix
23
- strategy:
24
- fail-fast: false
25
- matrix:
26
- node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
27
- steps:
28
- - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
29
- - name: Use Node.js ${{ matrix.node-version }}
30
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
31
- with:
32
- node-version: ${{ matrix.node-version }}
33
- - name: Install dependencies
34
- run: npm install
35
-
36
- - name: Lint
37
- run: npm run lint
38
-
39
- - name: Build
40
- run: npm run build
@@ -1,16 +0,0 @@
1
- name: Conventional Commits
2
- on:
3
- pull_request:
4
- types: [opened, edited, synchronize, reopened]
5
-
6
-
7
- jobs:
8
- lint:
9
- name: https://www.conventionalcommits.org
10
- runs-on: ubuntu-latest
11
- steps:
12
- - uses: beemojs/conventional-pr-action@v3
13
- with:
14
- config-preset: angular
15
- env:
16
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -1,43 +0,0 @@
1
- # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
- # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
-
4
- name: Release
5
-
6
- on:
7
- workflow_dispatch:
8
- push:
9
- branches: [ main ]
10
-
11
- permissions:
12
- contents: write
13
- pull-requests: write
14
- issues: write
15
-
16
- jobs:
17
- build:
18
- runs-on: ubuntu-latest
19
- steps:
20
- - uses: actions/checkout@v3
21
- - name: Use Node.js LTS
22
- uses: actions/setup-node@v3
23
- with:
24
- node-version: lts/*
25
- check-latest: true
26
- - run: npm install --no-package-lock
27
- name: Install dependencies
28
- - run: npm run test:unit
29
- name: Run NPM Test
30
- - run: |
31
- rm -rf node_modules package-lock.json
32
- npm prune --omit=dev --omit=peer --no-package-lock
33
- name: Remove dev dependencies and appium peer dependencies
34
- - run: npm shrinkwrap --omit=dev --omit=peer
35
- name: Create shrinkwrap
36
- # "--no-package-lock" prevent adding dev dependencies in the shrinkwrap
37
- - run: npm install --only=dev --no-package-lock
38
- name: Install dev dependencies for the release
39
- - run: npx semantic-release
40
- env:
41
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
43
- name: Release
@@ -1,40 +0,0 @@
1
- name: Test Validation
2
-
3
- on:
4
- push:
5
- branches: [ main ]
6
- pull_request:
7
- branches: [ main ]
8
-
9
- jobs:
10
- prepare_matrix:
11
- runs-on: ubuntu-latest
12
- outputs:
13
- versions: ${{ steps.generate-matrix.outputs.lts }}
14
- steps:
15
- - name: Select all current LTS versions of Node.js
16
- id: generate-matrix
17
- uses: msimerson/node-lts-versions@v1
18
-
19
- validate-tests:
20
- runs-on: macos-latest
21
- needs:
22
- - prepare_matrix
23
- strategy:
24
- fail-fast: false
25
- matrix:
26
- node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
27
- steps:
28
- - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
29
- - name: Use Node.js ${{ matrix.node-version }}
30
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
31
- with:
32
- node-version: ${{ matrix.node-version }}
33
- - name: Install dependencies
34
- run: npm install
35
-
36
- - name: Build project including tests
37
- run: npm run build
38
-
39
- - name: Run unit tests
40
- run: npm run test:unit
package/.mocharc.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "require": "tsx/cjs",
3
- "node-option": ["experimental-specifier-resolution=node"],
4
- "extension": ["ts"],
5
- "timeout": 60000,
6
- "recursive": true,
7
- "reporter": "spec"
8
- }
package/.prettierignore DELETED
@@ -1,3 +0,0 @@
1
- # Ignore artifacts:
2
- build
3
- coverage
package/.prettierrc DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "printWidth": 80,
3
- "tabWidth": 2,
4
- "useTabs": false,
5
- "semi": true,
6
- "singleQuote": true,
7
- "quoteProps": "as-needed",
8
- "trailingComma": "all",
9
- "bracketSpacing": true,
10
- "bracketSameLine": false,
11
- "arrowParens": "always",
12
- "endOfLine": "lf",
13
- "plugins": ["@trivago/prettier-plugin-sort-imports"],
14
- "importOrder": ["^\\u0000", "^@?\\w", "^[./]"],
15
- "importOrderSeparation": true,
16
- "importOrderSortSpecifiers": true
17
- }
package/.releaserc DELETED
@@ -1,48 +0,0 @@
1
- {
2
- "plugins": [
3
- ["@semantic-release/commit-analyzer", {
4
- "preset": "angular",
5
- "releaseRules": [
6
- {"type": "chore", "release": "patch"},
7
- {"type": "feat", "release": "minor"},
8
- {"type": "fix", "release": "patch"},
9
- {"type": "perf", "release": "patch"},
10
- {"type": "refactor", "release": "patch"},
11
- {"type": "style", "release": "patch"},
12
- {"type": "docs", "release": "patch"},
13
- {"type": "chore", "release": "patch"},
14
- {"breaking": true, "release": "minor"}
15
- ]
16
- }],
17
- ["@semantic-release/release-notes-generator", {
18
- "preset": "conventionalcommits",
19
- "presetConfig": {
20
- "types": [
21
- {"type": "feat", "section": "Features"},
22
- {"type": "fix", "section": "Bug Fixes"},
23
- {"type": "perf", "section": "Performance Improvements"},
24
- {"type": "revert", "section": "Reverts"},
25
- {"type": "chore", "section": "Miscellaneous Chores"},
26
- {"type": "refactor", "section": "Code Refactoring"},
27
- {"type": "docs", "section": "Documentation", "hidden": true},
28
- {"type": "style", "section": "Styles", "hidden": true},
29
- {"type": "test", "section": "Tests", "hidden": true},
30
- {"type": "build", "section": "Build System", "hidden": true},
31
- {"type": "ci", "section": "Continuous Integration", "hidden": true}
32
- ]
33
- }
34
- }],
35
- ["@semantic-release/changelog", {
36
- "changelogFile": "CHANGELOG.md"
37
- }],
38
- "@semantic-release/npm",
39
- ["@semantic-release/git", {
40
- "assets": ["docs", "package.json", "CHANGELOG.md"],
41
- "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
42
- }],
43
- "@semantic-release/github"
44
- ],
45
- "versionFilter": {
46
- "maxVersion": "0.99.999"
47
- }
48
- }
Binary file
package/eslint.config.js DELETED
@@ -1,45 +0,0 @@
1
- import appiumConfig from '@appium/eslint-config-appium-ts';
2
- import unicorn from 'eslint-plugin-unicorn';
3
-
4
- export default [
5
- ...appiumConfig,
6
- {
7
- files: ['**/*.ts'],
8
- linterOptions: {
9
- reportUnusedDisableDirectives: 'off',
10
- },
11
- plugins: {
12
- unicorn: unicorn,
13
- },
14
- rules: {
15
- quotes: ['error', 'single'],
16
- semi: ['error', 'always'],
17
- '@typescript-eslint/no-explicit-any': 'off',
18
- '@typescript-eslint/member-ordering': [
19
- 'error',
20
- {
21
- default: [
22
- // ─── PUBLIC METHODS ─────────────────────────────────────────────────────
23
- 'public-static-method',
24
- 'public-instance-method',
25
-
26
- // ─── PROTECTED METHODS ──────────────────────────────────────────────────
27
- 'protected-static-method',
28
- 'protected-instance-method',
29
-
30
- // ─── PRIVATE METHODS ────────────────────────────────────────────────────
31
- 'private-static-method',
32
- 'private-instance-method',
33
- ],
34
- },
35
- ],
36
- 'unicorn/filename-case': [
37
- 'error',
38
- {
39
- case: 'kebabCase',
40
- },
41
- ],
42
- },
43
- ignores: ['**/build/**', '**/node_modules/**'],
44
- },
45
- ];