@ostheimer/emoji 0.1.2
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 +28 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +11 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +46 -0
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @ostheimer/emoji
|
|
2
|
+
|
|
3
|
+
Short alias package for `ostheimer-emoji-intelligence`.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
This alias package is prepared for npm publishing. Until it is published, install the main package instead:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install ostheimer-emoji-intelligence
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or install the current wrapper tarball directly:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install https://www.ostheimer.at/downloads/ostheimer-emoji-0.1.2.tgz
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## CLI
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx emoji resolve "🚀" --lang de --json
|
|
23
|
+
npx emoji whoami --api-key "$EMOJI_INTELLIGENCE_API_KEY"
|
|
24
|
+
npx emoji mcp-test --api-key "$EMOJI_INTELLIGENCE_API_KEY"
|
|
25
|
+
npx emoji --help
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
The longer original package `ostheimer-emoji-intelligence` remains supported.
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/cli.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { runCli } from "ostheimer-emoji-intelligence/cli";
|
|
3
|
+
|
|
4
|
+
runCli(process.argv.slice(2))
|
|
5
|
+
.then((exitCode) => {
|
|
6
|
+
process.exitCode = exitCode;
|
|
7
|
+
})
|
|
8
|
+
.catch((error) => {
|
|
9
|
+
console.error("emoji CLI failed:", error);
|
|
10
|
+
process.exitCode = 1;
|
|
11
|
+
});
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "ostheimer-emoji-intelligence";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "ostheimer-emoji-intelligence";
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ostheimer/emoji",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Short alias package for ostheimer-emoji-intelligence",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./cli": {
|
|
14
|
+
"types": "./dist/cli.d.ts",
|
|
15
|
+
"import": "./dist/cli.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"bin": {
|
|
19
|
+
"emoji": "dist/cli.js"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"emoji",
|
|
27
|
+
"unicode",
|
|
28
|
+
"mcp",
|
|
29
|
+
"cli",
|
|
30
|
+
"api"
|
|
31
|
+
],
|
|
32
|
+
"license": "UNLICENSED",
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=18"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"ostheimer-emoji-intelligence": "^0.1.2"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "node ../../scripts/build-emoji-alias-package.mjs",
|
|
44
|
+
"prepack": "npm run build"
|
|
45
|
+
}
|
|
46
|
+
}
|