-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.59 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
65
66
67
68
69
70
71
72
73
74
{
"name": "@halvaradop/auth-init",
"version": "0.2.0",
"main": "dist/index.js",
"description": "CLI tool to initialize a project with auth.js",
"bin": {
"auth-init": "dist/index.js"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"link": "npm unlink . && chmod +x dist/index.js && npm link .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest --run --silent",
"test:watch": "vitest"
},
"type": "module",
"keywords": [
"auth.js",
"cli",
"tool",
"initializer",
"security",
"authentication",
"authorization"
],
"author": "Hernan Alvarado <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/halvaradop/auth-init.git"
},
"bugs": {
"url": "https://github.com/halvaradop/auth-init/issues"
},
"homepage": "https://github.com/halvaradop/auth-init#readme",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.3",
"dotenv": "^16.4.5",
"prettier": "^3.3.3",
"typescript": "^5.4.5",
"vitest": "^2.1.1"
},
"dependencies": {
"@inquirer/prompts": "^5.0.5",
"commander": "^12.1.0",
"nanospinner": "^1.1.0"
},
"files": [
"dist"
],
"prettier": {
"tabWidth": 4,
"semi": false,
"useTabs": true,
"singleQuote": false,
"printWidth": 130,
"overrides": [
{
"files": [
"*.json",
"README",
"*.yaml"
],
"options": {
"tabWidth": 2,
"useTabs": false
}
}
]
}
}