extension-develop 2.0.0-beta.6 → 2.0.0-beta.7

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.
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "node": ">=18"
10
10
  },
11
11
  "name": "extension-develop",
12
- "version": "2.0.0-beta.6",
12
+ "version": "2.0.0-beta.7",
13
13
  "description": "The develop step of Extension.js",
14
14
  "main": "./dist/module.js",
15
15
  "types": "./dist/module.d.ts",
@@ -21,14 +21,6 @@
21
21
  "email": "boss@cezaraugusto.net",
22
22
  "url": "https://cezaraugusto.com"
23
23
  },
24
- "scripts": {
25
- "clean": "rm -rf dist",
26
- "watch": "tsup-node ./module.ts --format cjs --dts --target=node18 --watch",
27
- "compile": "tsup-node ./module.ts --format cjs --dts --target=node18 --minify && bash install_scripts.sh",
28
- "test": "jest --no-cache --testPathPattern='webpack/.*/__spec__/.*\\.spec\\.*'",
29
- "test:coverage": "jest --no-cache --testPathPattern='webpack/.*/__spec__/.*\\.spec\\.ts' --coverage",
30
- "test:build": "jest ./build.spec.ts --no-cache"
31
- },
32
24
  "dependencies": {
33
25
  "@colors/colors": "^1.6.0",
34
26
  "@swc/core": "^1.7.3",
@@ -77,20 +69,20 @@
77
69
  "ws": "^8.18.0"
78
70
  },
79
71
  "devDependencies": {
80
- "@types/adm-zip": "^0.5.5",
72
+ "@types/adm-zip": "^0.5.7",
81
73
  "@types/case-sensitive-paths-webpack-plugin": "^2.1.9",
82
- "@types/chrome": "^0.0.270",
74
+ "@types/chrome": "^0.0.287",
83
75
  "@types/cross-spawn": "^6.0.6",
84
- "@types/dotenv-webpack": "^7.0.7",
85
- "@types/jest": "^29.5.12",
76
+ "@types/dotenv-webpack": "^7.0.8",
77
+ "@types/jest": "^29.5.14",
86
78
  "@types/loader-utils": "^2.0.6",
87
- "@types/node": "^22.5.3",
88
- "@types/webextension-polyfill": "^0.10.7",
89
- "@types/ws": "^8.5.12",
79
+ "@types/node": "^22.10.1",
80
+ "@types/webextension-polyfill": "^0.12.1",
81
+ "@types/ws": "^8.5.13",
90
82
  "jest": "^29.7.0",
91
- "ts-jest": "^29.1.2",
92
- "tsup": "^8.0.1",
93
- "typescript": "5.3.3"
83
+ "ts-jest": "^29.2.5",
84
+ "tsup": "^8.3.5",
85
+ "typescript": "5.7.2"
94
86
  },
95
87
  "optionalDependencies": {
96
88
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
@@ -111,5 +103,13 @@
111
103
  "vue-loader": "^17.4.2",
112
104
  "vue-style-loader": "^4.1.3",
113
105
  "vue-template-compiler": "^2.7.16"
106
+ },
107
+ "scripts": {
108
+ "clean": "rm -rf dist",
109
+ "watch": "tsup-node ./module.ts --format cjs --dts --target=node18 --watch",
110
+ "compile": "tsup-node ./module.ts --format cjs --dts --target=node18 --minify && bash install_scripts.sh",
111
+ "test": "jest --no-cache --testPathPattern='webpack/.*/__spec__/.*\\.spec\\.*'",
112
+ "test:coverage": "jest --no-cache --testPathPattern='webpack/.*/__spec__/.*\\.spec\\.ts' --coverage",
113
+ "test:build": "jest ./build.spec.ts --no-cache"
114
114
  }
115
- }
115
+ }