-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.59 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
{
"name": "vite-plugin-laravel-translations",
"version": "0.2.3",
"private": false,
"description": "Vite Plugin to make Laravel Translations globally available as JSON field.",
"author": "Dcode Group",
"main": "dist/vite.js",
"type": "module",
"files": [
"./dist/",
"./types/"
],
"scripts": {
"clear": "rimraf dist && mkdirp dist",
"build": "pnpm run clear && tsc",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"keywords": [
"vite",
"plugin",
"vite-plugin",
"laravel",
"translations",
"vue",
"react",
"json",
"php"
],
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.7.7",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"mkdirp": "^3.0.1",
"path": "^0.12.7",
"php-parser": "^3.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.9"
},
"dependencies": {
"glob": "^11.0.0",
"php-array-reader": "^2.1.2"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.1.3"
},
"bugs": {
"url": "https://github.com/dcodegroup/vite-plugin-laravel-translations/issues"
},
"engines": {
"node": ">= 12.0.0",
"pnpm": ">= 7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcodegroup/vite-plugin-laravel-translations.git"
}
}