-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.14 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.14 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "vbss-translator",
"version": "1.1.1",
"description": "A lightweight React translation toolkit focused on ergonomics, sensible defaults, and escape hatches when local dictionaries are not enough",
"keywords": [
"react",
"translation",
"i18n",
"internationalization",
"translator",
"react-hooks",
"context",
"cli",
"google-translate",
"typescript"
],
"private": false,
"type": "module",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/vbss-translator-umd.cjs",
"module": "dist/vbss-translator.js",
"exports": {
".": {
"types": "./dist/vbss-translator.d.ts",
"import": "./dist/vbss-translator.js",
"require": "./dist/vbss-translator-umd.cjs"
},
"./generator": {
"types": "./dist/generator.d.ts",
"import": "./dist/generator.js",
"require": "./dist/generator.cjs"
}
},
"types": "./dist/vbss-translator.d.ts",
"sideEffects": false,
"bin": {
"vbss-translator": "./dist/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vbss-io/vbss-translator.git"
},
"author": "Vitor Bastos <vitor@vbss.io> (https://vbss.io/)",
"homepage": "https://ui.vbss.io/tools/vbss-translator",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && vite build --mode generator && vite build --mode cli",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"generate-translations": "node dist/cli/index.js",
"typecheck": "tsc --noEmit",
"patch-deploy": "npm version patch && npm publish",
"minor-deploy": "npm version minor && npm publish",
"major-deploy": "npm version major && npm publish"
},
"dependencies": {
"axios": "^1.15.0",
"glob": "^10.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"overrides": {
"@eslint/plugin-kit": "^0.3.4",
"ajv@^6": "^6.14.0",
"ajv@^8": "^8.18.0",
"brace-expansion@1": "^1.1.12",
"brace-expansion@2": "^2.0.3",
"diff": "^4.0.4",
"esbuild": "^0.25.0",
"fast-uri": "^3.1.2",
"flatted": "^3.4.2",
"follow-redirects": "^1.16.0",
"handlebars": "^4.7.9",
"js-yaml": "^4.1.1",
"lodash": "^4.18.0",
"minimatch@^3": "^3.1.4",
"minimatch@^9": "^9.0.7",
"picomatch@^2": "^2.3.2",
"picomatch@^4": "^4.0.4",
"postcss": "^8.5.10",
"rollup": "^4.59.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.4.2",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
}
}