-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "@kreisler/js-google-translate-free",
"version": "4.0.2",
"description": "Google Translate Free library for JS",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"jsdelivr": "dist/index.iife.js",
"unpkg": "dist/index.iife.js",
"files": [
"dist/**/*"
],
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/kreisler"
},
"scripts": {
"test:cjs": "cross-env NODE_ENV=test node --test test/test.spec.cjs",
"test:mjs": "cross-env NODE_ENV=test node --test test/test.spec.mjs",
"prepare": "npm run build",
"build": "rogo",
"watch": "rogo -w",
"docs": "typedoc --out docs src/index.ts",
"serve": "pnpx serve -p 1234 ./docs",
"publish:public": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itskreisler/js-google-translate-free.git"
},
"homepage": "https://github.com/itskreisler/js-google-translate-free#readme",
"bugs": {
"url": "https://github.com/itskreisler/js-google-translate-free/issues"
},
"keywords": [
"google",
"translator",
"translate",
"api",
"free"
],
"author": "kreisler <tempkreisler@outlook.com> (https://linktr.ee/itskreisler)",
"contributors": [
{
"name": "Kreisler Ramirez Sierra",
"email": "tempkreisler@outlook.com",
"url": "https://linktr.ee/itskreisler"
}
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"rogo": "^3.1.5",
"ts-node": "^10.9.2",
"typedoc": "^0.25.11",
"typescript": "^5.4.2"
},
"dependencies": {
"axios": "1.6.7",
"@babel/runtime": "^7.24.0"
},
"eslintConfig": {}
}