Skip to content

Commit 8c5fa7f

Browse files
committed
Starting to create CLI tool
1 parent e193be9 commit 8c5fa7f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

packages/cli/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "@glstep/create-app",
3+
"type": "module",
4+
"version": "0.1.0",
5+
"description": "CLI tool to scaffold Vue/TS library projects",
6+
"author": "Gleb Stepanov <[email protected]>",
7+
"license": "MIT",
8+
"bin": "./bin/create-app.js",
9+
"files": ["bin", "dist", "templates"],
10+
"scripts": {
11+
"build": "tsup src/index.ts --format esm --dts",
12+
"dev": "tsup src/index.ts --format esm --watch",
13+
"typecheck": "tsc --noEmit"
14+
}
15+
}

0 commit comments

Comments
 (0)