-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.09 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.09 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@authial/strategies-dependencies",
"version": "0.1.1",
"description": "Shared dependencies for Authial Passport strategies",
"private": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"authial",
"passport",
"oauth",
"oauth2",
"authentication"
],
"author": {
"name": "Vaibhav Maurya",
"email": "thevaibhavmaurya@gmail.com",
"url": "https://github.com/thevaibhavmaurya"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/authial/strategies-dependencies.git"
},
"homepage": "https://github.com/authial/strategies-dependencies#readme",
"files": [
"dist/**/*",
"src/typescript/**/*"
],
"exports": {
"./eslint": "./dist/eslint/index.js",
"./prettier": "./dist/prettier/index.js",
"./tsconfig": "./src/typescript/config.json",
"./test": {
"import": "./dist/test/index.js",
"types": "./dist/test/index.d.ts"
},
"./passport": {
"import": "./dist/passport/index.js",
"types": "./dist/passport/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\""
},
"dependencies": {
"passport": "^0.7.0",
"passport-oauth2": "^1.8.0"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.3",
"@types/passport": "^1.0.17",
"@types/passport-oauth2": "^1.8.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"chai": "^6.2.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"mocha": "^11.7.5",
"pnpm": "^10.24.0",
"prettier": "^3.7.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.48.0"
}
}