@crouton-kit/crouter 0.1.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 ADDED
@@ -0,0 +1,13 @@
1
+ # crouter
2
+
3
+ ## Install
4
+
5
+ ```bash
6
+ npm install -g @crouton-kit/crouter
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ ```bash
12
+ crouter --help
13
+ ```
package/dist/cli.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
package/dist/cli.js ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ import { Command } from 'commander';
3
+ const program = new Command();
4
+ program
5
+ .name('crouter')
6
+ .description('crouter CLI')
7
+ .version('0.1.0');
8
+ program.parse();
@@ -0,0 +1 @@
1
+ export {};
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export {};
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@crouton-kit/crouter",
3
+ "version": "0.1.1",
4
+ "description": "crouter CLI",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "crouter": "dist/cli.js"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./cli": {
17
+ "import": "./dist/cli.js"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsc",
25
+ "dev": "tsx src/cli.ts",
26
+ "link": "npm link"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/crouton-labs/crouter.git"
31
+ },
32
+ "license": "MIT",
33
+ "dependencies": {
34
+ "commander": "^13.0.0"
35
+ },
36
+ "devDependencies": {
37
+ "@types/node": "^22.0.0",
38
+ "tsx": "^4.0.0",
39
+ "typescript": "^5.7.0"
40
+ }
41
+ }