-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@kelesoglu/localize-ai",
"version": "2.2.2",
"description": "The LocalizeAI is an npm package that enables easy localization of your applications using OpenAI. It provides seamless integration with OpenAI's language models, allowing you to localize and adapt your applications to different languages and regions effortlessly",
"main": "dist/index.js",
"private": false,
"scripts": {
"build": "tsc",
"prepare": "husky install",
"release": "semantic-release",
"start": "node dist/index.js"
},
"bin": {
"localize": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/harunkelesoglu/localize-ai.git"
},
"keywords": [
"localize",
"localization",
"openai"
],
"author": "https://github.com/harunkelesoglu",
"license": "MIT",
"bugs": {
"url": "https://github.com/harunkelesoglu/localize-ai/issues"
},
"homepage": "https://github.com/harunkelesoglu/localize-ai#readme",
"dependencies": {
"winston": "^3.9.0",
"axios": "^1.5.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@commitlint/core": "^17.6.5",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.4",
"@types/node": "^20.3.1",
"husky": "^8.0.0",
"reflect-metadata": "^0.1.13",
"semantic-release": "^21.0.5"
},
"release": {
"branches": [
{
"name": "main",
"channel": "latest",
"release": true
},
{
"name": "beta",
"channel": "beta",
"prerelease": true
},
{
"name": "alpha",
"channel": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}