diff --git a/build.ts b/build.ts index d87bfe7..748cddb 100644 --- a/build.ts +++ b/build.ts @@ -15,6 +15,7 @@ const entrypoints = [ "./src/trim-end.ts", "./src/trim-start.ts", "./src/random-case.ts", + "./src/lorem.ts", "./src/uis/truncate.ts", "./src/uis/pad.ts", ]; diff --git a/package.json b/package.json index 959860a..700a871 100644 --- a/package.json +++ b/package.json @@ -87,6 +87,11 @@ "main": "dist/pad.js", "name": "Pad a string to a maximum length", "cmds": [] + }, + { + "main": "dist/lorem.js", + "name": "Generate a Lorem Ipsum sentence into your clipboard", + "cmds": [] } ] }, @@ -98,6 +103,7 @@ "@kksh/api": "0.1.3", "i18next": "^23.15.1", "lodash": "^4.17.21", + "lorem-ipsum": "^2.0.8", "uuid": "^11.0.3" }, "devDependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4ebf271..c139729 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,6 +17,9 @@ importers: lodash: specifier: ^4.17.21 version: 4.17.21 + lorem-ipsum: + specifier: ^2.0.8 + version: 2.0.8 typescript: specifier: ^5.0.0 version: 5.7.3 @@ -725,6 +728,11 @@ packages: lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + lorem-ipsum@2.0.8: + resolution: {integrity: sha512-5RIwHuCb979RASgCJH0VKERn9cQo/+NcAi2BMe9ddj+gp7hujl6BI+qdOG4nVsLDpwWEJwTVYXNKP6BGgbcoGA==} + engines: {node: '>= 8.x', npm: '>= 5.x'} + hasBin: true + lru-cache@11.0.2: resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==} engines: {node: 20 || >=22} @@ -1872,6 +1880,10 @@ snapshots: lodash@4.17.21: {} + lorem-ipsum@2.0.8: + dependencies: + commander: 9.5.0 + lru-cache@11.0.2: {} lru-cache@5.1.1: diff --git a/src/lorem.ts b/src/lorem.ts new file mode 100644 index 0000000..aafc5ab --- /dev/null +++ b/src/lorem.ts @@ -0,0 +1,17 @@ +import {clipboard, expose} from "@kksh/api/headless"; +import camelCase from "lodash/camelCase"; +import {BaseExt} from "./base"; +import { LoremIpsum } from "lorem-ipsum"; + +class CamelCaseExt extends BaseExt { + constructor() { + super(()=>{ + const lorem = new LoremIpsum(); + const generated = lorem.generateSentences(1); + clipboard.writeText(generated); + return generated; + }); + } +} + +expose(new CamelCaseExt())