-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.79 KB
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": "astro-llm-translator",
"type": "module",
"version": "1.2.0",
"description": "Astro integration to automatically translate content using LLMs.",
"keywords": [
"astro",
"withastro",
"astro-integration",
"i18n",
"translation",
"llm",
"openai",
"utils"
],
"author": "Noa Virellia",
"license": "GPL-3.0-only",
"homepage": "https://github.com/AsterisMono/astro-llm-translator",
"repository": "github:AsterisMono/astro-llm-translator",
"exports": {
".": {
"types": "./dist/integration/index.d.ts",
"import": "./dist/integration/index.js"
},
"./starlight": {
"types": "./dist/starlight/index.d.ts",
"import": "./dist/starlight/index.js"
}
},
"main": "./dist/integration/index.js",
"types": "./dist/integration/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "astro dev",
"build": "astro build",
"build:lib": "tsup src/integration/index.ts src/starlight/index.ts --format esm --dts --clean",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"format": "biome format --write .",
"lint": "biome check .",
"release": "release-it"
},
"dependencies": {
"dotenv": "^17.2.3",
"github-slugger": "^2.0.0",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"p-limit": "^7.2.0",
"zod": "3"
},
"peerDependencies": {
"astro": "^5.0.0",
"openai": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@astrojs/starlight": "^0.37.3",
"@biomejs/biome": "2.3.11",
"@types/github-slugger": "^2.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.9",
"astro": "^5.16.11",
"openai": "^6.16.0",
"release-it": "^19.2.4",
"tsup": "^8.5.1",
"vitest": "^4.0.17"
}
}