@a5gard/bifrost 1.0.1

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,53 @@
1
+ {
2
+ "name": "@a5gard/bifrost",
3
+ "version": "1.0.1",
4
+ "description": "Platform-agnostic project creator with extensible template system",
5
+ "type": "module",
6
+ "bin": {
7
+ "bifrost": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "copy-registry": "bun copy-registry.js",
14
+ "build:tsup": "tsup src/index.ts --format esm --dts --clean",
15
+ "build": "npm run copy-registry && npm run build:tsup",
16
+ "dev": "tsc --watch",
17
+ "prepublishOnly": "npm run build"
18
+ },
19
+ "keywords": [
20
+ "create",
21
+ "bifrost",
22
+ "stack",
23
+ "template",
24
+ "scaffold",
25
+ "react",
26
+ "remix",
27
+ "nextjs",
28
+ "vite"
29
+ ],
30
+ "author": "",
31
+ "license": "MIT",
32
+ "dependencies": {
33
+ "chalk": "^5.3.0",
34
+ "commander": "^11.1.0",
35
+ "execa": "^8.0.1",
36
+ "fs-extra": "^11.2.0",
37
+ "ora": "^8.0.1",
38
+ "prompts": "^2.4.2",
39
+ "validate-npm-package-name": "^5.0.0"
40
+ },
41
+ "devDependencies": {
42
+ "@types/bun": "^1.3.7",
43
+ "@types/fs-extra": "^11.0.4",
44
+ "@types/node": "^20.11.0",
45
+ "@types/prompts": "^2.4.9",
46
+ "@types/validate-npm-package-name": "^4.0.2",
47
+ "typescript": "^5.3.3",
48
+ "tsup": "^8.0.1"
49
+ },
50
+ "engines": {
51
+ "node": ">=18.0.0"
52
+ }
53
+ }