-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 985 Bytes
/
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
{
"name": "fetchion",
"version": "1.0.0",
"type": "module",
"description": "一个轻量级的 JavaScript 请求库,专注于遵循 RESTful 规范,旨在提供简洁且高效的代码体验。它支持多种请求方法,易于配置,适合快速构建现代 web 应用程序。",
"main": "dist/fetchion.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/MrTang23/Fetchion.git"
},
"keywords": [
"fetch",
"http",
"api",
"requests",
"restful"
],
"author": "MrTang23",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrTang23/Fetchion/issues"
},
"homepage": "https://github.com/MrTang23/Fetchion#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "rollup -c"
},
"dependencies": {
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
}
}