create-waypoint-app 1.0.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,54 @@
1
+ {
2
+ "name": "create-waypoint-app",
3
+ "version": "1.0.0",
4
+ "description": "CLI tool to scaffold Waypoint 2.0 design system projects",
5
+ "type": "module",
6
+ "bin": {
7
+ "create-waypoint-app": "./bin/create-waypoint-app.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "files": [
12
+ "bin",
13
+ "dist",
14
+ "templates"
15
+ ],
16
+ "scripts": {
17
+ "build": "tsup src/index.ts --format esm --dts",
18
+ "dev": "tsup src/index.ts --format esm --watch",
19
+ "typecheck": "tsc --noEmit",
20
+ "prepublishOnly": "npm run build"
21
+ },
22
+ "dependencies": {
23
+ "chalk": "^5.3.0",
24
+ "commander": "^12.1.0",
25
+ "fs-extra": "^11.2.0",
26
+ "ora": "^8.0.1",
27
+ "prompts": "^2.4.2"
28
+ },
29
+ "devDependencies": {
30
+ "@types/fs-extra": "^11.0.4",
31
+ "@types/node": "^20.14.0",
32
+ "@types/prompts": "^2.4.9",
33
+ "tsup": "^8.1.0",
34
+ "typescript": "^5.4.5"
35
+ },
36
+ "keywords": [
37
+ "waypoint",
38
+ "design-system",
39
+ "cli",
40
+ "scaffolding",
41
+ "react",
42
+ "tailwindcss",
43
+ "shadcn"
44
+ ],
45
+ "author": "Waypoint Team",
46
+ "license": "MIT",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/waypoint/create-waypoint-app"
50
+ },
51
+ "engines": {
52
+ "node": ">=18.0.0"
53
+ }
54
+ }