forked from naver/passport-naver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
{
"name": "passport-naver-oauth2",
"version": "2.0.0",
"description": "\"네이버 아이디로 로그인\" 연동을 위한 차세대 Passport Strategy 라이브러리",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"passport",
"naver",
"auth",
"oauth",
"authentication",
"oauth2"
],
"repository": {
"type": "git",
"url": "git://github.com/lunaiz-corp/passport-naver-oauth2.git"
},
"bugs": {
"url": "https://github.com/lunaiz-corp/passport-naver-oauth2/issues"
},
"author": {
"name": "Minsu Kim",
"email": "minsu.kim@lunaiz.com",
"url": "https://github.com/kms0219kms"
},
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsup src/index.ts",
"prepublish": "pnpm run clean && pnpm run compile",
"fix": "gts fix"
},
"dependencies": {
"passport-oauth2": "^1.8.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/node": "^22.7.5",
"@types/passport-oauth2": "^1.4.17",
"gts": "^6.0.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"cjs",
"esm"
],
"dts": true,
"clean": true,
"minify": true,
"splitting": true,
"treeshake": true,
"sourcemap": true
},
"packageManager": "pnpm@10.0.0-rc.0+sha512.bce495587126f9a37d64150bf80dcf9bd96f0d64cfd450c9b1a7e5bf2cfc81aef3d50178f259855351c872905a240861a55031652c81e8a11665bfa65f6a1dc2"
}