-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "arpk",
"type": "module",
"version": "0.3.0-beta.4",
"packageManager": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/moeru-ai/arpk",
"repository": "github:moeru-ai/arpk",
"bugs": "https://github.com/moeru-ai/arpk/issues",
"description": "LLM as your translator, with DeepLX-compatible API.",
"keywords": [
"translator",
"translation"
],
"bin": "./dist/index.js",
"main": "./dist/index.js",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "pkgroll --minify",
"bump": "bumpp",
"dev": "tsx src",
"lint": "eslint --flag unstable_ts_config .",
"lint:fix": "eslint --flag unstable_ts_config --fix .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"cleye": "^1.3.2",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@hono/node-server": "^1.13.5",
"@importantimport/eslint-config": "1.0.0-alpha.1",
"@importantimport/tsconfig": "^0.1.1",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.1",
"@xsai/generate-text": "^0.0.19",
"bumpp": "^9.8.1",
"eslint": "^9.16.0",
"hono": "^4.6.13",
"jiti": "^2.4.1",
"pkgroll": "^2.5.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}