-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.11 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
{
"name": "passport-linuxdo",
"version": "0.1.4",
"description": "LinuxDO Connect OAuth 2.0 authentication strategy for Passport.js",
"author": {
"name": "Ryan Zen",
"email": "rubyceng0326@gmail.com"
},
"keywords": [
"passport",
"strategy",
"authentication",
"linuxdo",
"oauth2"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "vitest run"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanzen9/passport-linuxdo.git"
},
"dependencies": {
"passport-oauth2": "^1.8.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.6.0",
"@types/passport-oauth2": "^1.8.0",
"rollup": "^4.60.2",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}