-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
{
"name": "simple-typed-fetch",
"repository": {
"type": "git",
"url": "git+https://github.com/lobotomoe/simple-typed-fetch.git"
},
"version": "0.3.1",
"description": "Making HTTP requests human way",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./browser": {
"browser": "./dist/browser.global.js"
}
},
"type": "module",
"scripts": {
"prepack": "npm run build",
"clean": "rimraf dist/",
"build": "rimraf dist/ && tsup",
"watch": "npm run build -- --watch src",
"prepublishOnly": "npm run build"
},
"keywords": [
"fetch",
"zod",
"typed"
],
"author": "Alex Kraiz",
"license": "ISC",
"dependencies": {
"neverthrow": "^8.1.1",
"patch-package": "^8.0.0",
"warp-isomorphic": "^1.0.7",
"zod": "^3.23.8"
},
"homepage": "https://github.com/lobotomoe/simple-typed-fetch#readme",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": ">=8.17.0",
"@typescript-eslint/parser": ">=8.17.0",
"eslint": ">=9.16.0",
"eslint-config-xo": "^0.46.0",
"eslint-config-xo-typescript": "^7.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}