-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.5 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.5 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
73
74
75
76
77
78
79
80
{
"name": "@kabeep/node-translate",
"version": "1.2.0",
"type": "module",
"description": "A powerful, secure and feature-rich api via Google Translation.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"files": ["dist"],
"scripts": {
"prepare": "husky",
"lint": "biome check src",
"lint:write": "biome check src --write",
"lint:staged": "biome check src --write --staged",
"lint:changed": "biome check src --write --changed",
"lint-staged": "lint-staged",
"pretest": "npm run lint",
"test": "vitest run",
"coverage": "vitest run --coverage",
"watch": "tsup --watch",
"watch:test": "vitest",
"build": "tsup --dts --treeshake smallest",
"build:docs": "npm run build && typedoc"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/lodash.has": "^4.5.9",
"@types/node": "^22.2.0",
"@vitest/coverage-istanbul": "^3.2.4",
"husky": "^9.0.11",
"lint-staged": "^16.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typedoc": "~0.26.11",
"typedoc-material-theme": "^1.2.0",
"typedoc-plugin-include-example": "^2.0.2",
"typedoc-plugin-inline-sources": "~1.1.0",
"typedoc-plugin-mdn-links": "^4.0.7",
"typedoc-plugin-missing-exports": "^3.1.0",
"typedoc-plugin-rename-documents": "^1.0.0",
"typedoc-plugin-replace-text": "~4.0.0",
"typedoc-plugin-version-header": "^1.0.0",
"typescript": "^5.4.5",
"vitest": "^3.2.4"
},
"dependencies": {
"got": "^13.0.0",
"hpagent": "^1.2.0",
"iso-639-1": "^3.1.2",
"lodash.has": "^4.5.2",
"os-locale": "^6.0.2"
},
"author": {
"name": "Jason Zhang",
"email": "zzx2067@outlook.com"
},
"homepage": "https://kabeep.github.io/node-translate",
"repository": {
"type": "git",
"url": "git+https://github.com/kabeep/node-translate.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": "https://github.com/kabeep/node-translate/issues",
"keywords": [
"nodejs",
"translate",
"translate api",
"google translate",
"google translate api",
"node translate",
"node translate api"
],
"engines": {
"node": "18.18.x || >=18.20.0"
},
"license": "MIT"
}