-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.28 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
{
"name": "auth",
"version": "1.2.3",
"homepage": "https://cli.authjs.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/nextauthjs/cli.git"
},
"description": "The CLI tool by Auth.js to supercharge your authentication workflows.",
"scripts": {
"generate-docs": "node ./scripts/generate-docs"
},
"author": "Balázs Orbán <[email protected]>",
"contributors": [
"Balázs Orbán <[email protected]>",
"Nico Domino <[email protected]>",
"Lluis Agusti <[email protected]>",
"Thang Huu Vu <[email protected]>"
],
"license": "MIT",
"type": "module",
"bin": {
"auth": "index.js"
},
"files": [
"*.d.ts*",
"*.js",
"!scripts",
"commands",
"lib",
"src"
],
"keywords": [
"authjs",
"cli"
],
"dependencies": {
"@inkeep/ai-api": "0.8.0",
"@inquirer/prompts": "5.1.0",
"clipboardy": "4.0.0",
"commander": "12.1.0",
"open": "10.1.0",
"ora": "8.1.0",
"prompts": "2.4.2",
"yoctocolors": "2.1.1",
"zod": "3.23.8"
},
"prettier": {
"semi": false
},
"devDependencies": {
"@types/node": "18"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/nextauthjs/auth-cli/issues"
},
"main": "index.js",
"directories": {
"lib": "lib"
}
}