create-rakta-app 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,65 @@
1
+ {
2
+ "name": "create-rakta-app",
3
+ "version": "0.1.0",
4
+ "description": "Create a fullstack Rakta.js application with frontend, backend, database, rendering mode, and CSS framework choices.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Rhein Sullivan | Vyagra Nexus™",
8
+ "homepage": "https://raktajs.dev",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/RheinSullivan/raktajs.git",
12
+ "directory": "packages/create-rakta"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/RheinSullivan/raktajs/issues"
16
+ },
17
+ "keywords": [
18
+ "rakta",
19
+ "rakta.js",
20
+ "rheinsullivan",
21
+ "create-rakta-app",
22
+ "vyagranexus",
23
+ "framework",
24
+ "frontend",
25
+ "react",
26
+ "bun",
27
+ "typescript",
28
+ "fullstack",
29
+ "cli",
30
+ "scaffold",
31
+ "generator",
32
+ "app-router",
33
+ "gaman",
34
+ "express",
35
+ "nestjs",
36
+ "adonisjs"
37
+ ],
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "bin": {
42
+ "create-rakta-app": "./dist/index.js"
43
+ },
44
+ "files": [
45
+ "dist",
46
+ "src/templates",
47
+ "README.md",
48
+ "LICENSE"
49
+ ],
50
+ "scripts": {
51
+ "dev": "bun run ./src/index.ts",
52
+ "build": "bun build ./src/index.ts --outdir ./dist --target bun --sourcemap=external",
53
+ "typecheck": "tsc -p ./tsconfig.json --noEmit",
54
+ "prepublishOnly": "bun run build && bun run typecheck"
55
+ },
56
+ "dependencies": {
57
+ "@clack/prompts": "^1.6.0",
58
+ "picocolors": "^1.1.1"
59
+ },
60
+ "devDependencies": {
61
+ "@types/bun": "^1.3.14",
62
+ "@types/node": "^26.0.1",
63
+ "typescript": "^6.0.3"
64
+ }
65
+ }