create-vibemancer 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +30 -30
  2. package/package.json +37 -36
package/README.md CHANGED
@@ -1,30 +1,30 @@
1
- # create-vibemancer
2
-
3
- Scaffold a new [Vibemancer](https://vibemancer.com) wizard bot project.
4
-
5
- ## Usage
6
-
7
- ```bash
8
- npm create vibemancer@latest my-wizard
9
- cd my-wizard
10
- npm install
11
- npm run dev
12
- ```
13
-
14
- Creates a project with:
15
-
16
- - `src/bot.ts` — starter wizard bot
17
- - `tests/bot.test.ts` — vitest suite
18
- - `AGENTS.md` — context file for AI coding assistants (Claude Code, Cursor, Copilot CLI, Codex)
19
- - `README.md` — full development workflow guide
20
- - `vibemancer.json` — CLI config
21
-
22
- Prefer pnpm, yarn, or bun? They all work — swap `npm` for your favourite.
23
-
24
- ## What's next
25
-
26
- See the full walkthrough at [vibemancer.com](https://vibemancer.com) (Build a Bot tab), or just run `npm run dev` and start editing.
27
-
28
- ## License
29
-
30
- MIT
1
+ # create-vibemancer
2
+
3
+ Scaffold a new [Vibemancer](https://vibemancer.com) wizard bot project.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ npm create vibemancer@latest my-wizard
9
+ cd my-wizard
10
+ npm install
11
+ npm run dev
12
+ ```
13
+
14
+ Creates a project with:
15
+
16
+ - `src/bot.ts` — starter wizard bot
17
+ - `tests/bot.test.ts` — vitest suite
18
+ - `AGENTS.md` — context file for AI coding assistants (Claude Code, Cursor, Copilot CLI, Codex)
19
+ - `README.md` — full development workflow guide
20
+ - `vibemancer.json` — CLI config
21
+
22
+ Prefer pnpm, yarn, or bun? They all work — swap `npm` for your favourite.
23
+
24
+ ## What's next
25
+
26
+ See the full walkthrough at [vibemancer.com](https://vibemancer.com) (Build a Bot tab), or just run `npm run dev` and start editing.
27
+
28
+ ## License
29
+
30
+ MIT
package/package.json CHANGED
@@ -1,37 +1,38 @@
1
1
  {
2
- "name": "create-vibemancer",
3
- "version": "0.1.0",
4
- "description": "Create a new Vibemancer wizard bot project",
5
- "type": "module",
6
- "author": "Low Entry",
7
- "license": "MIT",
8
- "homepage": "https://vibemancer.com",
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/LowEntry/lowentry-app-vibemancer.git"
12
- },
13
- "bin": {
14
- "create-vibemancer": "./dist/index.js"
15
- },
16
- "main": "./dist/index.js",
17
- "files": [
18
- "dist"
19
- ],
20
- "devDependencies": {
21
- "@stylistic/eslint-plugin": "^5.7.1",
22
- "@types/node": "^25.3.0",
23
- "eslint": "^9.39.2",
24
- "tsup": "^8.5.1",
25
- "typescript": "^5.9.3",
26
- "typescript-eslint": "^8.53.1",
27
- "vitest": "^4.0.18"
28
- },
29
- "scripts": {
30
- "build": "tsup",
31
- "lint": "eslint .",
32
- "format": "eslint . --fix",
33
- "type-check": "tsc --noEmit",
34
- "test": "pnpm run type-check && pnpm run lint && vitest run",
35
- "clean": "rm -rf dist"
36
- }
37
- }
2
+ "name": "create-vibemancer",
3
+ "version": "0.1.1",
4
+ "description": "Create a new Vibemancer wizard bot project",
5
+ "type": "module",
6
+ "author": "Low Entry",
7
+ "license": "MIT",
8
+ "homepage": "https://vibemancer.com",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/LowEntry/lowentry-app-vibemancer.git"
12
+ },
13
+ "bin": {
14
+ "create-vibemancer": "./dist/index.js"
15
+ },
16
+ "main": "./dist/index.js",
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "lint": "eslint .",
23
+ "format": "eslint . --fix",
24
+ "type-check": "tsc --noEmit",
25
+ "test": "pnpm run type-check && pnpm run lint && vitest run",
26
+ "clean": "rm -rf dist",
27
+ "prepublishOnly": "pnpm run test && pnpm run clean && pnpm run build"
28
+ },
29
+ "devDependencies": {
30
+ "@stylistic/eslint-plugin": "^5.7.1",
31
+ "@types/node": "^25.3.0",
32
+ "eslint": "^9.39.2",
33
+ "tsup": "^8.5.1",
34
+ "typescript": "^5.9.3",
35
+ "typescript-eslint": "^8.53.1",
36
+ "vitest": "^4.0.18"
37
+ }
38
+ }