@a5gard/bifrost 1.0.1 → 1.0.3

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.
@@ -0,0 +1,37 @@
1
+ [
2
+ {
3
+ "owner": "remix-run",
4
+ "repo": "indie-stack",
5
+ "description": "Remix Stack for indie developers",
6
+ "platform": "remix-run",
7
+ "tags": ["remix", "sqlite", "prisma"]
8
+ },
9
+ {
10
+ "owner": "remix-run",
11
+ "repo": "blues-stack",
12
+ "description": "Remix Stack with PostgreSQL",
13
+ "platform": "remix-run",
14
+ "tags": ["remix", "postgresql", "prisma"]
15
+ },
16
+ {
17
+ "owner": "remix-run",
18
+ "repo": "grunge-stack",
19
+ "description": "Remix Stack with AWS",
20
+ "platform": "remix-run",
21
+ "tags": ["remix", "aws", "dynamodb"]
22
+ },
23
+ {
24
+ "owner": "vercel",
25
+ "repo": "next.js",
26
+ "description": "Next.js starter",
27
+ "platform": "remix-run",
28
+ "tags": ["nextjs", "react", "vercel"]
29
+ },
30
+ {
31
+ "owner": "vitejs",
32
+ "repo": "vite",
33
+ "description": "Vite starter template",
34
+ "platform": "remix-run",
35
+ "tags": ["vite", "react"]
36
+ }
37
+ ]
package/package.json CHANGED
@@ -1,18 +1,19 @@
1
1
  {
2
2
  "name": "@a5gard/bifrost",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Platform-agnostic project creator with extensible template system",
5
5
  "type": "module",
6
6
  "bin": {
7
+ "@a5gard/bifrost": "./dist/index.js",
7
8
  "bifrost": "./dist/index.js"
8
9
  },
9
- "files": [
10
+ "files": [
10
11
  "dist"
11
12
  ],
12
13
  "scripts": {
13
14
  "copy-registry": "bun copy-registry.js",
14
15
  "build:tsup": "tsup src/index.ts --format esm --dts --clean",
15
- "build": "npm run copy-registry && npm run build:tsup",
16
+ "build": "npm run build:tsup && npm run copy-registry ",
16
17
  "dev": "tsc --watch",
17
18
  "prepublishOnly": "npm run build"
18
19
  },
@@ -34,6 +35,7 @@
34
35
  "commander": "^11.1.0",
35
36
  "execa": "^8.0.1",
36
37
  "fs-extra": "^11.2.0",
38
+ "inquirer": "^13.2.2",
37
39
  "ora": "^8.0.1",
38
40
  "prompts": "^2.4.2",
39
41
  "validate-npm-package-name": "^5.0.0"
@@ -44,8 +46,8 @@
44
46
  "@types/node": "^20.11.0",
45
47
  "@types/prompts": "^2.4.9",
46
48
  "@types/validate-npm-package-name": "^4.0.2",
47
- "typescript": "^5.3.3",
48
- "tsup": "^8.0.1"
49
+ "tsup": "^8.0.1",
50
+ "typescript": "^5.3.3"
49
51
  },
50
52
  "engines": {
51
53
  "node": ">=18.0.0"