create-apppaaaul 2.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.
- package/README.md +20 -0
- package/package.json +43 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Create AppPaaaul
|
|
2
|
+
|
|
3
|
+
Create projects as Paauldev would.
|
|
4
|
+
Based on [appcny](https://github.com/goncy/create-appncy)
|
|
5
|
+
|
|
6
|
+
## Usage
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
# Interactive mode
|
|
10
|
+
pnpm create apppaaaul
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pnpm install -g create-apppaaaul
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Questions?
|
|
20
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-apppaaaul",
|
|
3
|
+
"version": "2.0.2",
|
|
4
|
+
"description": "Create projects as paaauldev would",
|
|
5
|
+
"main": "index.mjs",
|
|
6
|
+
"bin": {
|
|
7
|
+
"create-apppaaaul": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/**/*"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"react",
|
|
14
|
+
"goncy",
|
|
15
|
+
"paaauldev",
|
|
16
|
+
"next.js",
|
|
17
|
+
"shadcn",
|
|
18
|
+
"tailwindcss"
|
|
19
|
+
],
|
|
20
|
+
"author": "paaauldev",
|
|
21
|
+
"license": "ISC",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"cross-spawn": "^7.0.6",
|
|
24
|
+
"glob": "^10.4.5",
|
|
25
|
+
"picocolors": "^1.1.1",
|
|
26
|
+
"prompts": "^2.4.2",
|
|
27
|
+
"yargs": "^17.7.2"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsup",
|
|
31
|
+
"start": "node dist/index.js",
|
|
32
|
+
"dev": "tsup --watch",
|
|
33
|
+
"bump": "pnpm run build && pnpm version patch && git tag latest --force && git push origin main --tags --force && pnpm publish --tag latest --force"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/node": "^20.17.27",
|
|
37
|
+
"@types/prompts": "^2.4.9",
|
|
38
|
+
"@types/yargs": "^17.0.33",
|
|
39
|
+
"prettier": "^3.5.3",
|
|
40
|
+
"tsup": "^8.4.0",
|
|
41
|
+
"typescript": "^5.8.2"
|
|
42
|
+
}
|
|
43
|
+
}
|