-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.09 KB
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
{
"name": "bangumi-api-ts",
"version": "3.0.1",
"description": "用typescript包装的Bangumi REST API.",
"keywords": [
"bangumi",
"api",
"typescript"
],
"homepage": "https://github.com/Rewrite0/bangumi-api#readme",
"bugs": {
"url": "https://github.com/Rewrite0/bangumi-api/issues",
"email": "y747556795@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Rewrite0/bangumi-api"
},
"license": "MIT",
"author": {
"name": "Rewrite0",
"email": "y747556795@gmail.com"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"push": "pnpm build && pnpm publish"
},
"dependencies": {
"axios": "^1.3.5",
"bgm-types": "^3.1.1"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^18.15.11",
"rollup": "^3.20.3",
"rollup-plugin-dts": "^5.3.0",
"tslib": "^2.5.0"
}
}