-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "axios-tauri-http-adapter",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"version": "1.1.2",
"scripts": {
"build": "rollup -c",
"prepublish": "bun run build"
},
"files": [
"dist"
],
"keywords": [
"axios",
"tauri",
"http",
"adapter",
"typescript"
],
"license": "MIT",
"author": "DreamingCodes <me@dreaming.codes>",
"repository": {
"type": "git",
"url": "https://github.com/Dreaming-Codes/axios-tauri-http-adapter"
},
"homepage": "https://github.com/Dreaming-Codes/axios-tauri-http-adapter",
"bugs": "https://github.com/Dreaming-Codes/axios-tauri-http-adapter/issues",
"peerDependencies": {
"@tauri-apps/api": "^2.0.0-beta.4",
"axios": "^1.6.7"
},
"dependencies": {
"http-status-codes": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"bun-plugin-dts": "^0.2.1",
"bun-types": "^1.0.6",
"rollup": "^4.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}