oauth-init 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "oauth-init",
3
+ "version": "0.1.0",
4
+ "description": "CLI for setting up OAuth providers for your project",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "bin": {
9
+ "oauth-init": "dist/index.js"
10
+ },
11
+ "scripts": {
12
+ "build": "bun build ./src/index.ts --outdir ./dist --target node",
13
+ "dev": "bun ./src/index.ts --watch",
14
+ "prepare": "bun run build"
15
+ },
16
+ "dependencies": {
17
+ "@clack/prompts": "^1.0.1",
18
+ "@types/bun": "^1.3.9",
19
+ "chalk": "^5.3.0",
20
+ "commander": "^12.0.0",
21
+ "execa": "^9.6.1",
22
+ "inquirer": "^9.2.12",
23
+ "open": "^11.0.0"
24
+ },
25
+ "devDependencies": {
26
+ "bun-types": "latest"
27
+ }
28
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "module": "NodeNext",
5
+ "moduleResolution": "NodeNext",
6
+ "outDir": "./dist",
7
+ "rootDir": "./src",
8
+ "strict": true,
9
+ "esModuleInterop": true,
10
+ "skipLibCheck": true,
11
+ "forceConsistentCasingInFileNames": true,
12
+ "declaration": true
13
+ },
14
+ "include": ["src/**/*"],
15
+ "exclude": ["node_modules", "dist"]
16
+ }