-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 841 Bytes
/
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
{
"name": "nextauth-cli",
"version": "0.0.6",
"description": "A nextauth cli to setup a basic application Setup running",
"bin": {
"solidauth": "./dist/solid.js",
"nextauth": "./dist/nextauth.js",
"svelteauth": "./dist/sveltekit.js"
},
"scripts": {
"build": "tsup src --format cjs,esm, --minify --dts",
"link": "yarn --global unlink nextauth-cli && yarn --global link",
"dev": "tsc -W"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.5.9",
"@types/prompts": "^2.4.4",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"commander": "^11.0.0",
"nanospinner": "^1.1.0",
"next-auth": "^4.23.1",
"ora": "^7.0.1",
"picocolors": "^1.0.0",
"prompts": "^2.4.2"
}
}