-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "arpk",
"type": "module",
"version": "0.4.0",
"packageManager": "pnpm@10.27.0",
"description": "LLM as your translator, with DeepLX-compatible API.",
"license": "MIT",
"homepage": "https://github.com/moeru-ai/arpk",
"repository": "github:moeru-ai/arpk",
"bugs": "https://github.com/moeru-ai/arpk/issues",
"keywords": [
"translator",
"translation"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"bin": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "pkgroll --minify",
"bump": "bumpp",
"dev": "tsx src",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"cleye": "^2.2.1",
"srvx": "^0.10.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@moeru/eslint-config": "0.1.0-beta.14",
"@moeru/tsconfig": "0.1.0-beta.14",
"@types/node": "^24.10.4",
"@xsai/generate-text": "^0.4.1",
"bumpp": "^10.3.2",
"eslint": "^9.39.2",
"hono": "^4.11.3",
"jiti": "^2.6.1",
"pkgroll": "^2.21.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}