tsc-app 3.1.1 → 3.1.2

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.
Files changed (2) hide show
  1. package/README.md +19 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # ts-app
2
+
3
+ A minimal and fast **TypeScript project generator** — spin up a ready-to-use TypeScript + Node.js project with a single command.
4
+
5
+ ## ✨ Features
6
+ - 📦 Creates `package.json` with sensible defaults
7
+ - ⚙ Generates a clean `tsconfig.json`
8
+ - 📂 Sets up `src/` folder with a `main.ts` starter file
9
+ - 🏃 Adds `start`, `build`, and `serve` scripts
10
+ - ⚡ Supports **CommonJS** and **ES Module** formats with `-m` flag
11
+ - 🖥 Instantly ready to run via `npx` — no global install required
12
+
13
+ ---
14
+
15
+ ## 🚀 Quick Start
16
+
17
+ ### 1. Create a new project
18
+ ```bash
19
+ npx ts-app my-app
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsc-app",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "Quick TypeScript project initializer",
5
5
  "main": "index.js",
6
6
  "bin": {