forked from appvia/githubUserManager
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 886 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 886 Bytes
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
{
"name": "githubusermanager",
"version": "1.0.0",
"description": "1. [Add a custom attribute on the users](https://support.google.com/a/answer/6208725?hl=en#zippy=%2Cadd-a-new-custom-attribute)",
"license": "MIT",
"author": "Chris Nesbitt-Smith",
"type": "module",
"main": "./index.js",
"scripts": {
"check-types": "tsc",
"lint": "oxlint .",
"lint-fix": "oxlint --fix .",
"format": "oxfmt .",
"start": "tsx index.ts",
"test": "vitest --config vitest.config.ts"
},
"dependencies": {
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"googleapis": "^171.4.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@vitest/coverage-v8": "^4.1.4",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.21.1",
"vitest": "^4.1.4"
}
}