innernote 0.1.0

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 (3) hide show
  1. package/README.md +241 -0
  2. package/dist/index.js +1969 -0
  3. package/package.json +25 -0
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "innernote",
3
+ "version": "0.1.0",
4
+ "description": "Write LinkedIn posts in your voice, from the terminal.",
5
+ "type": "module",
6
+ "bin": {
7
+ "innernote": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "build": "bun run build.ts",
15
+ "start": "bun run src/index.ts",
16
+ "typecheck": "tsc --noEmit",
17
+ "prepublishOnly": "bun run build.ts"
18
+ },
19
+ "engines": {
20
+ "node": ">=20"
21
+ },
22
+ "devDependencies": {
23
+ "@types/bun": "^1.3.14"
24
+ }
25
+ }