ai-wingman 0.0.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 (3) hide show
  1. package/README.md +231 -0
  2. package/dist/wingman.js +7210 -0
  3. package/package.json +34 -0
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "ai-wingman",
3
+ "version": "0.0.2",
4
+ "description": "The right way to wire AI into your Next.js app",
5
+ "type": "module",
6
+ "author": "Yonatan Katz",
7
+ "license": "MIT",
8
+ "bin": {
9
+ "ai-wingman": "./dist/wingman.js"
10
+ },
11
+ "files": [
12
+ "./dist"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsup",
16
+ "watch": "tsup --watch",
17
+ "dev": "tsx bin/wingman.ts",
18
+ "test": "vitest run",
19
+ "test:e2e": "vitest run tests/e2e --reporter=verbose",
20
+ "typecheck": "tsc --noEmit"
21
+ },
22
+ "dependencies": {
23
+ "@clack/prompts": "^1.1.0",
24
+ "commander": "^14.0.3"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^25.5.0",
28
+ "tsup": "^8.5.1",
29
+ "tsx": "^4.21.0",
30
+ "typescript": "^5.9.3",
31
+ "vite": "^8.0.0",
32
+ "vitest": "^4.1.0"
33
+ }
34
+ }