@offmain/workerkit 0.3.0 → 0.7.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.
- package/package.json +17 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@offmain/workerkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "A lightweight manager for running functions in Web Workers with partitioning, retries, and concurrency control",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -20,6 +20,21 @@
|
|
|
20
20
|
"dist",
|
|
21
21
|
"eslint-rules"
|
|
22
22
|
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite",
|
|
25
|
+
"build": "vite build",
|
|
26
|
+
"build:lib": "vite build --config vite.lib.config.ts",
|
|
27
|
+
"preview": "vite preview",
|
|
28
|
+
"lint": "eslint --fix .",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"test:watch": "vitest",
|
|
31
|
+
"release:patch": "pnpm version patch && pnpm run release:publish",
|
|
32
|
+
"release:minor": "pnpm version minor && pnpm run release:publish",
|
|
33
|
+
"release:major": "pnpm version major && pnpm run release:publish",
|
|
34
|
+
"release:publish": "pnpm run build:lib && pnpm publish",
|
|
35
|
+
"prepublishOnly": "pnpm run build:lib",
|
|
36
|
+
"prepare": "husky"
|
|
37
|
+
},
|
|
23
38
|
"keywords": [
|
|
24
39
|
"web-worker",
|
|
25
40
|
"worker",
|
|
@@ -55,18 +70,5 @@
|
|
|
55
70
|
"vite": "^6.3.3",
|
|
56
71
|
"vite-plugin-dts": "^4.5.4",
|
|
57
72
|
"vitest": "^1.0.0"
|
|
58
|
-
},
|
|
59
|
-
"scripts": {
|
|
60
|
-
"dev": "vite",
|
|
61
|
-
"build": "vite build",
|
|
62
|
-
"build:lib": "vite build --config vite.lib.config.ts",
|
|
63
|
-
"preview": "vite preview",
|
|
64
|
-
"lint": "eslint --fix .",
|
|
65
|
-
"test": "vitest run",
|
|
66
|
-
"test:watch": "vitest",
|
|
67
|
-
"release:patch": "pnpm version patch && pnpm run release:publish",
|
|
68
|
-
"release:minor": "pnpm version minor && pnpm run release:publish",
|
|
69
|
-
"release:major": "pnpm version major && pnpm run release:publish",
|
|
70
|
-
"release:publish": "pnpm run build:lib && pnpm publish"
|
|
71
73
|
}
|
|
72
|
-
}
|
|
74
|
+
}
|