create-zenith 0.6.6

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,54 @@
1
+ {
2
+ "name": "create-zenith",
3
+ "version": "0.6.6",
4
+ "description": "Create a new Zenith application - the modern reactive web framework",
5
+ "type": "module",
6
+ "bin": {
7
+ "create-zenith": "./dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "bun build src/index.ts --outdir dist --target node --format esm && node -e \"const fs=require('fs');const c=fs.readFileSync('dist/index.js','utf8');fs.writeFileSync('dist/cli.js','#!/usr/bin/env node\\n'+c);fs.chmodSync('dist/cli.js','755')\"",
14
+ "prepublishOnly": "npm run build",
15
+ "create": "bun src/index.ts",
16
+ "example": "rm -rf examples/test-template && bun src/index.ts test-template && mv test-template examples/",
17
+ "test": "node dist/cli.js --help",
18
+ "release": "bun run scripts/release.ts",
19
+ "release:dry": "bun run scripts/release.ts --dry-run",
20
+ "release:patch": "bun run scripts/release.ts --bump=patch",
21
+ "release:minor": "bun run scripts/release.ts --bump=minor",
22
+ "release:major": "bun run scripts/release.ts --bump=major"
23
+ },
24
+ "keywords": [
25
+ "zenith",
26
+ "create",
27
+ "scaffold",
28
+ "cli",
29
+ "framework",
30
+ "reactive"
31
+ ],
32
+ "author": "Zenith Team",
33
+ "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+ssh://git@github.com/zenithbuild/create-zenith.git"
37
+ },
38
+ "engines": {
39
+ "node": ">=18.0.0"
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "private": false,
45
+ "dependencies": {
46
+ "@clack/prompts": "^0.11.0",
47
+ "gradient-string": "^3.0.0",
48
+ "picocolors": "^1.1.1"
49
+ },
50
+ "devDependencies": {
51
+ "@types/gradient-string": "^1.1.6",
52
+ "@types/node": "^20.0.0"
53
+ }
54
+ }