-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
86 lines (86 loc) · 2.19 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
81
82
83
84
85
86
{
"name": "laravel-vue-i18n",
"version": "2.7.8",
"author": {
"name": "Francisco Madeira",
"email": "[email protected]"
},
"keywords": [
"laravel",
"vue",
"vue3",
"inertiajs"
],
"repository": "https://github.com/xico2k/laravel-vue-i18n",
"license": "MIT",
"description": "allows to connect your `Laravel` Framework localization files with `Vue`.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"vite": [
"dist/vite.d.ts"
]
}
},
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"watch": "tsc-multi --watch",
"test": "jest",
"coverage": "jest --coverage",
"lint": "prettier -c \"src/**/*.(ts|js|vue)\" --write",
"build": "rimraf dist && tsc-multi && babel dist/utils/has-php-translations.cjs --out-file dist/utils/has-php-translations.cjs",
"prepare": "npm run build",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@types/jest": "^27.5.2",
"@vue/babel-plugin-jsx": "^1.1.5",
"@vue/test-utils": "^2.4.3",
"babel-jest": "^27.5.1",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"jest": "^27.5.1",
"laravel-mix": "^6.0.49",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"source-map": "^0.7.4",
"ts-jest": "^27.1.5",
"ts-loader": "^9.5.1",
"tsc-multi": "^1.1.0",
"typescript": "^4.9.5",
"vite": "^4.5.1"
},
"dependencies": {
"php-parser": "3.1.3",
"vue": "^3.2.45"
},
"lint-staged": {
"*.ts": [
"prettier --parser=typescript --write"
],
"*.js": [
"prettier --parser=javascript --write"
]
}
}