This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.61 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
{
"name": "@svelte-dev/auth-sso",
"version": "0.0.5",
"description": "SSO for Svelte Auth",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
},
"./package.json": "./package.json"
},
"types": ",/build/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/willin/svelte-auth-sso.git"
},
"author": "Willin Wang <[email protected]> (https://willin.wang/)",
"bugs": {
"url": "https://github.com/willin/sso/issues"
},
"homepage": "https://github.com/willin/sso#readme",
"keywords": [
"svelte",
"svelte-auth",
"auth",
"authentication",
"strategy",
"sso"
],
"license": "Apache-2.0",
"files": [
"build",
"package.json",
"README.md"
],
"peerDependencies": {
"@sveltejs/kit": "^1.27.4",
"svelte": "^5.0.0 || ^4.0.0"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"babel-jest": "^29.7.0",
"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",
"vite": "^4.4.2",
"vitest": "^0.34.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@svelte-dev/auth-oauth2": "^0.0.5"
}
}