create-playcademy 0.1.1-alpha.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.
- package/README.md +27 -0
- package/dist/index.js +6 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# create-playcademy
|
|
2
|
+
|
|
3
|
+
Create a new Playcademy project.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# npm
|
|
9
|
+
npm create playcademy
|
|
10
|
+
|
|
11
|
+
# bun
|
|
12
|
+
bun create playcademy
|
|
13
|
+
|
|
14
|
+
# pnpm
|
|
15
|
+
pnpm create playcademy
|
|
16
|
+
|
|
17
|
+
# yarn
|
|
18
|
+
yarn create playcademy
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
This is a thin wrapper around `playcademy init`. All arguments are passed through.
|
|
22
|
+
|
|
23
|
+
## What it does
|
|
24
|
+
|
|
25
|
+
This package enables the `create` command syntax by providing a `create-playcademy` binary that npm/bun/pnpm/yarn can discover and execute.
|
|
26
|
+
|
|
27
|
+
Under the hood, it simply runs `npx playcademy init` with any provided arguments.
|
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-playcademy",
|
|
3
|
+
"version": "0.1.1-alpha.1",
|
|
4
|
+
"description": "Create a new Playcademy project",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"create-playcademy": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "bun build.ts",
|
|
14
|
+
"pub": "bun publish.ts"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"playcademy": "0.14.30"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@inquirer/prompts": "^7.8.6",
|
|
21
|
+
"@playcademy/utils": "0.0.1",
|
|
22
|
+
"@types/bun": "latest",
|
|
23
|
+
"colorette": "^2.0.20",
|
|
24
|
+
"playcademy": "0.14.30"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"typescript": "^5"
|
|
28
|
+
}
|
|
29
|
+
}
|