@microlink/function 0.2.8 → 0.3.2
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/LICENSE.md +0 -0
- package/README.md +1 -1
- package/package.json +13 -15
package/LICENSE.md
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -261,7 +261,7 @@ console.log(result.profiling)
|
|
|
261
261
|
|
|
262
262
|
| | Free | Pro |
|
|
263
263
|
| --- | --- | --- |
|
|
264
|
-
| Timeout | 5 seconds | Up to
|
|
264
|
+
| Timeout | 5 seconds | Up to 60 seconds |
|
|
265
265
|
| Memory | 16 MB | 32 MB |
|
|
266
266
|
| Code size | 1024 bytes | Unlimited |
|
|
267
267
|
| Concurrency | 1 per IP | Unlimited |
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@microlink/function",
|
|
3
3
|
"description": "Write JavaScript functions and run them remotely with Microlink — Puppeteer access, npm packages, and zero infrastructure.",
|
|
4
4
|
"homepage": "https://function.microlink.io",
|
|
5
|
-
"version": "0.2
|
|
5
|
+
"version": "0.3.2",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
"types": "./src/index.d.ts",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"serverless"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"
|
|
38
|
-
"
|
|
37
|
+
"lz-ts": "~1.1.2",
|
|
38
|
+
"@microlink/mql": "0.18.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@rollup/plugin-commonjs": "latest",
|
|
@@ -53,20 +53,11 @@
|
|
|
53
53
|
"tsd": "latest"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
|
-
"node": ">=
|
|
56
|
+
"node": ">= 24"
|
|
57
57
|
},
|
|
58
58
|
"files": [
|
|
59
59
|
"src"
|
|
60
60
|
],
|
|
61
|
-
"scripts": {
|
|
62
|
-
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
|
63
|
-
"clean:build": "rm -rf dist/index.js",
|
|
64
|
-
"dev": "pnpm run build -- -w",
|
|
65
|
-
"prebuild": "pnpm run clean:build",
|
|
66
|
-
"prepublishOnly": "pnpm run build",
|
|
67
|
-
"pretest": "pnpm run build",
|
|
68
|
-
"test": "ava --verbose && tsd"
|
|
69
|
-
},
|
|
70
61
|
"license": "MIT",
|
|
71
62
|
"ava": {
|
|
72
63
|
"timeout": "1m"
|
|
@@ -82,5 +73,12 @@
|
|
|
82
73
|
},
|
|
83
74
|
"directory": "test"
|
|
84
75
|
},
|
|
85
|
-
"
|
|
86
|
-
|
|
76
|
+
"scripts": {
|
|
77
|
+
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
|
78
|
+
"clean:build": "rm -rf dist/index.js",
|
|
79
|
+
"dev": "pnpm run build -- -w",
|
|
80
|
+
"prebuild": "pnpm run clean:build",
|
|
81
|
+
"pretest": "pnpm run build",
|
|
82
|
+
"test": "ava --verbose && tsd"
|
|
83
|
+
}
|
|
84
|
+
}
|