@ikenxuan/amagi 6.0.0 → 6.1.3
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/README.md +56 -21
- package/dist/{chunk-CbDLau6x.cjs → chunk-CKQMccvm.cjs} +13 -19
- package/dist/default/index.cjs +2864 -883
- package/dist/default/index.d.ts +15390 -14208
- package/dist/default/index.mjs +2810 -835
- package/dist/exports/axios.cjs +9 -8
- package/dist/exports/axios.mjs +2 -4
- package/dist/exports/chalk.cjs +7 -7
- package/dist/exports/chalk.mjs +2 -3
- package/dist/exports/express.cjs +3 -4
- package/dist/exports/express.mjs +1 -2
- package/package.json +6 -5
package/dist/exports/axios.cjs
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
const require_chunk = require(
|
|
1
|
+
const require_chunk = require("../chunk-CKQMccvm.cjs");
|
|
2
2
|
let axios = require("axios");
|
|
3
|
-
axios = require_chunk.__toESM(axios);
|
|
4
|
-
|
|
3
|
+
axios = require_chunk.__toESM(axios, 1);
|
|
5
4
|
module.exports = axios.default;
|
|
6
|
-
Object.keys(axios).forEach(function
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
Object.keys(axios).forEach(function(k) {
|
|
6
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return axios[k];
|
|
10
|
+
}
|
|
11
|
+
});
|
|
11
12
|
});
|
package/dist/exports/axios.mjs
CHANGED
package/dist/exports/chalk.cjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
1
|
var chalk = require("chalk");
|
|
4
|
-
Object.keys(chalk).forEach(function
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
Object.keys(chalk).forEach(function(k) {
|
|
3
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
4
|
+
enumerable: true,
|
|
5
|
+
get: function() {
|
|
6
|
+
return chalk[k];
|
|
7
|
+
}
|
|
8
|
+
});
|
|
9
9
|
});
|
package/dist/exports/chalk.mjs
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export * from "chalk"
|
|
2
|
-
|
|
3
|
-
export { };
|
|
1
|
+
export * from "chalk";
|
|
2
|
+
export {};
|
package/dist/exports/express.cjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
const require_chunk = require(
|
|
1
|
+
const require_chunk = require("../chunk-CKQMccvm.cjs");
|
|
2
2
|
let express = require("express");
|
|
3
|
-
express = require_chunk.__toESM(express);
|
|
4
|
-
|
|
5
|
-
module.exports = express.default;
|
|
3
|
+
express = require_chunk.__toESM(express, 1);
|
|
4
|
+
module.exports = express.default;
|
package/dist/exports/express.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikenxuan/amagi",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.3",
|
|
4
4
|
"description": "抖音、B站的 web 端相关数据接口基于 Node.js 的实现",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"douyin",
|
|
@@ -54,14 +54,15 @@
|
|
|
54
54
|
],
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@ikenxuan/xhshow-ts": "^1.0.6",
|
|
57
|
-
"axios": "^1.
|
|
57
|
+
"axios": "^1.15.2",
|
|
58
58
|
"chalk": "5.6.2",
|
|
59
59
|
"express": "^5.2.1",
|
|
60
|
-
"protobufjs": "8.0.
|
|
61
|
-
"zod": "4.3.
|
|
60
|
+
"protobufjs": "8.0.1",
|
|
61
|
+
"zod": "4.3.6"
|
|
62
62
|
},
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public",
|
|
65
65
|
"registry": "https://registry.npmjs.org"
|
|
66
|
-
}
|
|
66
|
+
},
|
|
67
|
+
"timestamp": "2026-04-08T05:13:54.305Z"
|
|
67
68
|
}
|