forked from willin/svelte-auth-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
{
"name": "@svelte-dev/auth-oauth2",
"version": "0.0.5",
"description": "A OAuth2Strategy for @svelte-dev/auth",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
},
"./package.json": "./package.json"
},
"types": "./build/index.d.ts",
"homepage": "https://github.com/willin/svelte-auth-oauth2#readme",
"repository": {
"url": "https://github.com/willin/svelte-auth-oauth2",
"type": "git"
},
"type": "module",
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "prettier --write . && eslint . --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [
"svelte",
"svelte-auth",
"auth",
"authentication",
"strategy"
],
"license": "Apache-2.0",
"files": [
"build",
"package.json",
"README.md"
],
"peerDependencies": {
"svelte": "^5.0.0 || ^4.0.0",
"@sveltejs/kit": "^1.27.4",
"@svelte-dev/auth": "latest"
},
"devDependencies": {
"@svelte-dev/auth": "^0.0.5",
"@sveltejs/kit": "^1.27.4",
"@types/debug": "^4.1.12",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.30.0",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"svelte": "^5.0.0-next.17",
"svelte-check": "^3.6.0",
"typescript": "^5.0.0",
"vite": "^4.4.2",
"vitest": "^0.34.0"
},
"dependencies": {
"debug": "^4.3.4",
"nanoid": "^5.0.4"
}
}