create-auth-js-boiler
Version:
Create a new auth-js-boiler project
60 lines (59 loc) • 1.27 kB
JSON
{
"name": "create-auth-js-boiler",
"version": "1.0.20",
"description": "Create a new auth-js-boiler project",
"main": "dist/index.js",
"type": "module",
"bin": {
"create-auth-js-boiler": "./dist/index.js",
"create": "./dist/index.js"
},
"files": [
"dist/",
"template/**/*",
"build.js"
],
"scripts": {
"build": "tsc && npm run copy-template",
"copy-template": "cp -r template dist/",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"create": "node dist/index.js"
},
"keywords": [
"create",
"auth",
"boilerplate",
"authentication",
"next.js",
"auth.js",
"nextauth",
"auth-js-boiler"
],
"author": "Mohamed",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.13",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.27",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Mohamed-gp/auth-js-boiler"
},
"publishConfig": {
"access": "public"
}
}