-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@karamem0/zenn-plugin-emoji",
"version": "0.0.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"zenn-emoji": "dist/index.js"
},
"author": "karamem0",
"license": "MIT",
"description": "Zenn の記事のアイキャッチ絵文字を内容から生成するためのプラグインです。",
"repository": {
"type": "git",
"url": "https://github.com/karamem0/zenn-plugin-emoji"
},
"keywords": [
"cli",
"emoji",
"zenn"
],
"scripts": {
"build": "tsc && babel src --extensions '.ts' --out-dir dist --copy-files"
},
"dependencies": {
"@azure/identity": "^4.4.1",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"openai": "^4.67.3"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@eslint/js": "^9.12.0",
"@stylistic/eslint-plugin": "^2.9.0",
"babel-preset-minify": "^0.5.2",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
}
}