epos 1.52.0 → 1.53.0

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.
@@ -52,7 +52,7 @@ export type DeclarativeNetRequest = Omit<typeof chrome.declarativeNetRequest, 'u
52
52
  * - This update happens as a single atomic operation: either all specified rules are added and removed, or an error is returned.
53
53
  * - These rules are persisted across browser sessions and across extension updates.
54
54
  * - Static rules specified as part of the extension package can not be removed using this function.
55
- * - {@link MAX_NUMBER_OF_DYNAMIC_RULES} is the maximum number of dynamic rules an extension can add. The number of [unsafe rules](https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/#safe_rules) must not exceed {@link MAX_NUMBER_OF_UNSAFE_DYNAMIC_RULES}.
55
+ * - {@link chrome.declarativeNetRequest.MAX_NUMBER_OF_DYNAMIC_RULES} is the maximum number of dynamic rules an extension can add. The number of [unsafe rules](https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/#safe_rules) must not exceed {@link MAX_NUMBER_OF_UNSAFE_DYNAMIC_RULES}.
56
56
  *
57
57
  * Can return its result via Promise in Manifest V3 or later since Chrome 91.
58
58
  *
@@ -68,7 +68,7 @@ export type DeclarativeNetRequest = Omit<typeof chrome.declarativeNetRequest, 'u
68
68
  * - This update happens as a single atomic operation: either all specified rules are added and removed, or an error is returned.
69
69
  * - These rules are persisted across browser sessions and across extension updates.
70
70
  * - Static rules specified as part of the extension package can not be removed using this function.
71
- * - {@link MAX_NUMBER_OF_DYNAMIC_RULES} is the maximum number of dynamic rules an extension can add. The number of [unsafe rules](https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/#safe_rules) must not exceed {@link MAX_NUMBER_OF_UNSAFE_DYNAMIC_RULES}.
71
+ * - {@link chrome.declarativeNetRequest.MAX_NUMBER_OF_DYNAMIC_RULES} is the maximum number of dynamic rules an extension can add. The number of [unsafe rules](https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/#safe_rules) must not exceed {@link MAX_NUMBER_OF_UNSAFE_DYNAMIC_RULES}.
72
72
  *
73
73
  * Can return its result via Promise in Manifest V3 or later since Chrome 91.
74
74
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epos",
3
- "version": "1.52.0",
3
+ "version": "1.53.0",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "imkost",
@@ -20,22 +20,19 @@
20
20
  "dist"
21
21
  ],
22
22
  "dependencies": {
23
- "@parcel/watcher": "^2.5.4",
24
23
  "@types/chrome": "^0.1.36",
25
24
  "@types/react": "^19.2.9",
26
25
  "@types/react-dom": "^19.2.3",
27
- "epos-spec": "^1.12.0",
26
+ "epos-spec": "^1.13.0",
28
27
  "mobx": "^6.15.0",
29
28
  "mobx-react-lite": "^4.1.1",
30
- "portfinder": "^1.0.38",
31
29
  "react": "^19.2.3",
32
- "ws": "^8.19.0",
33
30
  "yjs": "^13.6.29"
34
31
  },
35
32
  "devDependencies": {
36
- "vite": "npm:rolldown-vite@^7.3.1"
33
+ "vite": "^8.0.0-beta.0"
37
34
  },
38
35
  "peerDependencies": {
39
- "vite": "npm:rolldown-vite@^7.3.1"
36
+ "vite": "^8.0.0-beta.0"
40
37
  }
41
38
  }