-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 955 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
41
42
43
44
45
{
"name": "totte",
"version": "0.1.0",
"description": "A lightweight JavaScript HTTP client based on Fetch API",
"type": "module",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"scripts": {
"build": "tsx scripts/esbuild/build.ts",
"test": "tsx scripts/test/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xueelf/totte.git"
},
"keywords": [
"api",
"fetch",
"http",
"https",
"request"
],
"author": "Yuki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xueelf/totte/issues"
},
"homepage": "https://github.com/xueelf/totte#readme",
"devDependencies": {
"@types/node": "latest",
"esbuild": "latest",
"nebia": "latest",
"tsx": "latest"
},
"peerDependencies": {
"typescript": "latest"
}
}