-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.6 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
{
"name": "@tuplo/fetch",
"description": "Simplistic HTTP request library (ESM/CJS)",
"version": "0.0.0-development",
"repository": "git@github.com:tuplo/fetch.git",
"author": "Rui Costa",
"license": "MIT",
"keywords": [
"http",
"https",
"fetch"
],
"types": "dist/index.d.ts",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"exports": {
".": [
{
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./dist/index.mjs"
]
},
"files": [
"dist/index.mjs",
"dist/index.cjs",
"dist/index.d.ts",
"dist/fetch.d.ts"
],
"scripts": {
"build": "tsx sh/build.ts",
"coverage": "tsx sh/coverage.ts",
"dev": "tsx sh/dev.ts",
"format": "prettier --write src sh",
"lint:ts": "tsc --noEmit",
"lint": "eslint src --ext ts",
"test:ci": "vitest run",
"test": "vitest --watch"
},
"devDependencies": {
"@tuplo/shell": "1.2.2",
"@types/debug": "4.1.12",
"@types/node": "20.10.4",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"@vitest/coverage-v8": "1.0.4",
"esbuild": "0.19.9",
"eslint": "8.55.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"msw": "2.0.11",
"npm-check-updates": "16.14.11",
"nyc": "15.1.0",
"prettier": "3.1.1",
"tsx": "4.6.2",
"typescript": "5.3.3",
"vitest": "1.0.4"
},
"publishConfig": {
"access": "public"
}
}