packmd 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.
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ // src/index.ts
4
+ console.log("Hello, World!");
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "packmd",
3
+ "version": "0.0.1",
4
+ "license": "MIT",
5
+ "type": "module",
6
+ "bin": {
7
+ "packmd": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsup",
16
+ "dev": "tsx src/index.ts",
17
+ "start": "node dist/index.js",
18
+ "prepublishOnly": "bun run build",
19
+ "pushout": "npm publish",
20
+ "pushout-inc": "npm version patch --no-git-tag-version && bun run pushout"
21
+ },
22
+ "devDependencies": {
23
+ "@types/node": "^26.1.1",
24
+ "tsup": "^8.5.1",
25
+ "tsx": "^4.23.1",
26
+ "typescript": "^5"
27
+ },
28
+ "dependencies": {
29
+ "chalk": "^5.6.2",
30
+ "commander": "^15.0.0",
31
+ "ora": "^9.4.1"
32
+ }
33
+ }