-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@ikenxuan/amagi",
"version": "4.4.7",
"description": "抖音、B站的 web 端相关数据接口基于 Node.js 的实现",
"keywords": [
"douyin",
"bilibili",
"kuaishou",
"api"
],
"homepage": "https://github.com/ikenxuan/amagi",
"bugs": {
"url": "https://github.com/ikenxuan/amagi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikenxuan/amagi.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/default/index.d.ts",
"import": "./dist/default/esm/index.mjs",
"require": "./dist/default/cjs/index.cjs"
},
"./express": {
"types": "./dist/exports/express.d.ts",
"import": "./dist/exports/express.js",
"require": "./dist/exports/express.cjs"
},
"./axios": {
"types": "./dist/exports/axios.d.ts",
"import": "./dist/exports/axios.js",
"require": "./dist/exports/axios.cjs"
}
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "tsup && tsup --tsconfig tsconfig.module.json --config tsup.modules.ts && node ci/module.js",
"clean": "npm ci/pr.js clean",
"dev": "tsx watch src/dev.ts",
"dev:js": "node src/dev.js",
"fix": "npx eslint src/**/*.ts --fix",
"pr": "node ci/pr.js",
"pub": "npm publish --access public",
"pub-beta": "npm publish --tag beta",
"sort": "npx sort-package-json"
},
"dependencies": {
"axios": "^1.7.9",
"chalk": "4.1.2",
"express": "^4.21.2",
"lodash": "^4.17.21",
"log4js": "6.9.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@swc/core": "^1.10.12",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"neostandard": "^0.12.0",
"sort-package-json": "^2.12.0",
"tsc-alias": "^1.8.10",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}