@xylabs/threads 5.0.89 → 5.0.91
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 +16 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylabs/threads",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.91",
|
|
4
4
|
"description": "Web workers & worker threads as simple as a function call",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"thread",
|
|
@@ -107,27 +107,32 @@
|
|
|
107
107
|
"README.md",
|
|
108
108
|
"LICENSE"
|
|
109
109
|
],
|
|
110
|
-
"scripts": {
|
|
111
|
-
"package-compile": "yarn package-compile-tsup",
|
|
112
|
-
"package-compile-tsup": "tsup --config tsup.browser.config.ts && tsup --config tsup.node.config.ts && tsup --config tsup.neutral.config.ts"
|
|
113
|
-
},
|
|
114
110
|
"dependencies": {
|
|
115
|
-
"@xylabs/assert": "~5.0.
|
|
111
|
+
"@xylabs/assert": "~5.0.90",
|
|
116
112
|
"debug": "~4.4.3",
|
|
117
113
|
"is-observable-2-1-0": "npm:is-observable@2.1.0",
|
|
118
114
|
"observable-fns": "~0.6.1"
|
|
119
115
|
},
|
|
120
116
|
"devDependencies": {
|
|
121
117
|
"@types/debug": "~4.1.13",
|
|
122
|
-
"@
|
|
123
|
-
"@
|
|
124
|
-
"@
|
|
118
|
+
"@types/node": "*",
|
|
119
|
+
"@typescript-eslint/eslint-plugin": "^8",
|
|
120
|
+
"@typescript-eslint/parser": "^8",
|
|
121
|
+
"@xylabs/eslint-config-flat": "~7.6.2",
|
|
122
|
+
"@xylabs/ts-scripts-common": "~7.6.2",
|
|
123
|
+
"@xylabs/ts-scripts-pnpm": "~7.6.2",
|
|
124
|
+
"@xylabs/tsconfig": "~7.6.2",
|
|
125
125
|
"eslint": "~10.1.0",
|
|
126
126
|
"tsup": "~8.5.1",
|
|
127
|
-
"typescript": "
|
|
127
|
+
"typescript": "^5",
|
|
128
|
+
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
128
129
|
"vitest": "^4.1.2"
|
|
129
130
|
},
|
|
130
131
|
"publishConfig": {
|
|
131
132
|
"access": "public"
|
|
133
|
+
},
|
|
134
|
+
"scripts": {
|
|
135
|
+
"package-compile": "pnpm package-compile-tsup",
|
|
136
|
+
"package-compile-tsup": "tsup --config tsup.browser.config.ts && tsup --config tsup.node.config.ts && tsup --config tsup.neutral.config.ts"
|
|
132
137
|
}
|
|
133
|
-
}
|
|
138
|
+
}
|