-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "fetchify-axios",
"description": "Fetchify Axios is a fetch adapter for Axios that takes any function that implements the standard fetchAPI interface!",
"version": "1.0.5",
"main": "index.js",
"module": "index.js",
"types": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ToxicalNoob3062/fetchify-axios.git"
},
"dependencies": {
"fetch-parse": "^1.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"axios": "^1.6.8"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun build ./index.ts --outfile=index.js --format=esm --minify",
"test": "bun test",
"compile": "bun run test && bun run build",
"deploy:patch": "bun run compile && npm version patch && npm publish --access public",
"deploy:minor": "bun run compile && npm version minor && npm publish --access public",
"deploy:major": "bun run compile && npm version major && npm publish --access public"
},
"type": "module",
"license": "MIT",
"keywords": [
"axios",
"adapter",
"fetch",
"http",
"ajax",
"tauri"
]
}