-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "util-http",
"version": "0.0.15",
"description": "util-http",
"author": "Tutitoos",
"license": "MIT",
"repository": "Tutitoos/util-http.git",
"publisher": "Tutitoos",
"keywords": [
"http",
"axios",
"fetch",
"undici",
"superagent",
"http-client",
"http-requests",
"typescript",
"nodejs",
"utilities",
"rest-api"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "pnpm build && jest",
"clean": "pnpm exec tsc --build --clean",
"build": "pnpm run clean && pnpm exec tsc --build",
"postbuild": "cp src/types.d.ts dist/types.d.ts",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "pnpm run lint:eslint && pnpm run lint:biome",
"lint:eslint": "pnpm eslint --config eslint.config.mjs --ignore-pattern .gitignore . --max-warnings 0",
"lint:biome": "pnpm dlx @biomejs/biome check src",
"pub": "npm publish",
"adduser": "npm adduser"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@eslint/js": "9.39.4",
"@types/jest": "29.5.14",
"@types/node": "25.0.3",
"@types/superagent": "8.1.9",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"globals": "17.3.0",
"jest": "29.7.0",
"ts-jest": "29",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0"
},
"dependencies": {
"axios": "1.15.0",
"superagent": "10.3.0",
"undici": "8.0.2"
}
}