-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.29 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
{
"name": "aurora-vue3",
"private": false,
"version": "1.0.0",
"description": "Enhanced HTTP requests in Vue 3 (with axios)",
"license": "MIT",
"type": "module",
"main": "./dist/aurora.umd.js",
"module": "./dist/aurora.es.js",
"exports": {
".": {
"import": "./dist/aurora.es.js",
"require": "./dist/aurora.umd.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/svnrnns/aurora-vue3"
},
"keywords": [
"Vue 3",
"Axios",
"HTTP requests",
"REST API",
"Concurrent requests",
"Vue hooks",
"AbortController",
"Reactive API calls",
"HTTP client",
"Vue composition API",
"Aurora",
"Vue.js",
"AJAX",
"API integration",
"Vue plugins",
"Vue utilities",
"HTTP interceptors",
"Error handling",
"Custom headers",
"Query parameters"
],
"bugs": {
"url": "https://github.com/svnrnns/aurora-vue3/issues"
},
"homepage": "https://github.com/svnrnns/aurora-vue3",
"author": "seven rings (https://twitter.com/svnrnns)",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.6.5",
"vue": "^3.3.11"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.2",
"vite": "^5.0.8"
}
}