-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 984 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 984 Bytes
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
{
"name": "fetchfully",
"version": "1.6.0",
"description": "JavaScript Fetch API with power pack ⚡️",
"main": "./dist/fetchfully.cjs",
"module": "./dist/fetchfully.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"public": true,
"exports": {
".": {
"import": "./dist/fetchfully.mjs",
"require": "./dist/fetchfully.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romeopeter/fetchfully.git"
},
"author": "Romeo Agbor Peter",
"license": "ISC",
"bugs": {
"url": "https://github.com/romeopeter/fetchfully/issues"
},
"homepage": "https://github.com/romeopeter/fetchfully#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.4.0"
}
}