@embeddable.com/init 0.0.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -0
  2. package/package.json +29 -0
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ // src/index.ts
4
+ console.log("hello, how are you today?");
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@embeddable.com/init",
3
+ "version": "0.0.1",
4
+ "description": "CLI tool for Embeddable",
5
+ "type": "module",
6
+ "bin": {
7
+ "init": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup",
14
+ "dev": "tsup --watch",
15
+ "prepublishOnly": "npm run build"
16
+ },
17
+ "keywords": [
18
+ "embeddable",
19
+ "cli"
20
+ ],
21
+ "license": "MIT",
22
+ "engines": {
23
+ "node": ">=20"
24
+ },
25
+ "devDependencies": {
26
+ "tsup": "^8.0.0",
27
+ "typescript": "^5.0.0"
28
+ }
29
+ }