-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
90 lines (90 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vue-auth3",
"version": "1.0.11",
"author": "Tachibana Shin <45375496+tachibana-shin@users.noreply.github.com>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.mjs",
"jsdelivr": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./drivers/": "./dist/drivers/",
"./dist/": "./dist/"
},
"typesVersions": {
"*": {
"drivers/*": [
"dist/drivers/*"
]
}
},
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/plist": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"axios": "^0.27.2",
"bumpp": "^9.1.0",
"cspell": "^4.1.0",
"esbuild": "^0.13.14",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.4.2",
"frisbee": "^3.1.4",
"globby": "^13.1.1",
"jest": "^27.2.1",
"mitt": "^3.0.0",
"npm-run-all": "^4.1.5",
"path-cross": "^0.0.3",
"plist": "^3.0.4",
"prettier": "^2.1.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.4.0",
"tsup": "^6.7.0",
"typedoc": "^0.22.4",
"typescript": "4.8.0-dev.20220514",
"vitepress": "^0.22.4",
"vue": "3.2.33",
"vue-resource": "^1.5.3",
"vue-router": "4"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "bumpp package.json --tags --push && yarn build",
"docs": "typedoc src",
"test:coverage": "jest",
"test": "run-s test:*",
"lint": "eslint \"./src/**\" --ext \".ts\"",
"prettier": "prettier -cw src/",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"typing": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git://github.com/tachibana-shin/vue-auth3.git"
},
"homepage": "https://vue-auth3.js.org",
"keywords": [
"vue-auth3",
"vue",
"bearer",
"authen",
"vue 3",
"vue-auth",
"@websanova/vue-auth"
]
}