-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.44 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "use-auth",
"version": "1.3.2",
"description": "Simple authentication composition functions for vue 3",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "./dist/use-auth.es.js",
"exports": {
".": {
"import": "./dist/use-auth.es.js",
"require": "./dist/use-auth.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuellandreau/use-auth.git"
},
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"test": "jest"
},
"dependencies": {
"axios": "^1.1.3",
"vue": "^3.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.3",
"@vue/test-utils": "2.2.3",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-mock-axios": "^4.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vue-composition-test-utils": "^1.0.3",
"vue-tsc": "^1.0.9"
},
"keywords": [
"vue",
"auth",
"authentication",
"composition",
"use"
],
"author": "Manuel Landreau <manuel.landreau@pm.me>",
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"plugins": [
[
"@babel/transform-runtime",
{
"regenerator": true
}
]
]
}
}