-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
{
"name": "storyblok-translate-asset-meta",
"version": "0.0.1",
"description": "npx CLI tool to automatically translate alt-text of assets used in stories of a Storyblok space using DeepL API.",
"scripts": {
"upgrade": "npx npm-check-updates -i -u --install never && pnpm install",
"lint:js": "eslint --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .lintignore .",
"lintfix:js": "pnpm lint:js --fix",
"lint:prettier": "prettier --ignore-path ./.lintignore --check .",
"lintfix:prettier": "prettier --ignore-path ./.lintignore --write --list-different .",
"lint": "pnpm lint:js && pnpm lint:prettier",
"lintfix": "pnpm lintfix:js && pnpm lintfix:prettier"
},
"bin": {
"storyblok-translate-asset-meta": "bin/storyblok-translate-asset-meta.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webflorist/storyblok-translate-asset-meta.git"
},
"keywords": [
"storyblok",
"cms",
"translate",
"images",
"alt-text",
"cli",
"node",
"script",
"npx"
],
"author": "Gerald Buttinger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webflorist/storyblok-translate-asset-meta/issues"
},
"homepage": "https://github.com/webflorist/storyblok-translate-asset-meta#readme",
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.6.2",
"clone-deep": "^4.0.1",
"deepl-node": "^1.14.0",
"minimist": "^1.2.8",
"storyblok-js-client": "^6.7.3"
}
}