forked from xiCO2k/laravel-vue-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "laravel-vue-i18n",
"version": "2.3.4",
"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/cjs/index.js",
"module": "dist/index.js",
"scripts": {
"watch": "tsc --watch",
"test": "jest",
"coverage": "jest --coverage",
"lint": "prettier -c \"src/**/*.(ts|js|vue)\" --write",
"build:plugins": "tsc -p tsconfig.plugins.json",
"build:client": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.commonjs.json && babel dist/cjs/utils/has-php-translations.js --out-file dist/cjs/utils/has-php-translations.js",
"build": "npm run build:plugins && npm run build:client && npm run build: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.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^27.5.2",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/test-utils": "^2.2.7",
"babel-jest": "^27.5.1",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"laravel-mix": "^6.0.49",
"jest": "^27.5.1",
"prettier": "^2.8.3",
"source-map": "^0.7.4",
"ts-jest": "^27.1.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4"
},
"dependencies": {
"php-parser": "3.1.3",
"vue": "^3.2.45"
},
"lint-staged": {
"*.ts": [
"prettier --parser=typescript --write"
],
"*.js": [
"prettier --parser=javascript --write"
]
}
}