-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.01 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
71
72
73
74
75
76
77
78
79
80
{
"name": "vite-plugin-laravel-i18next",
"version": "1.0.0",
"type": "module",
"description": "A Vite plugin to convert Laravel translation files to i18next-compatible JSON files",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"index.js",
"index.d.ts",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"npm-shrinkwrap.json",
"package-lock.json"
],
"scripts": {
"test:unit": "npx vitest run --coverage",
"build": "rm -rf dist && vite build",
"test:e2e": "playwright test",
"dev:test": "vite --config tests/e2e/app/vite.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adesege/vite-plugin-laravel-i18next.git"
},
"keywords": [
"vite",
"plugin",
"laravel",
"i18next",
"translation",
"internationalization"
],
"author": "Temitayo Fadojutimi <[email protected]>",
"license": "MIT",
"dependencies": {
"glob": "^11.0.0",
"php-parser": "^3.1.5"
},
"devDependencies": {
"@playwright/test": "^1.47.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.1",
"chokidar": "^4.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"esbuild": "^0.24.0",
"fs-extra": "^11.2.0",
"i18next": "^23.15.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.2",
"react-router-dom": "^6.26.2",
"semantic-release": "^24.1.2",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3",
"vite-plugin-static-copy": "^1.0.6",
"vitest": "^2.1.1"
},
"peerDependencies": {
"chokidar": ">=4",
"vite": ">=5"
}
}