Skip to content

Commit

Permalink
fix package json repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano.occhi committed May 15, 2023
1 parent 2c226b5 commit cc0c706
Showing 1 changed file with 76 additions and 76 deletions.
152 changes: 76 additions & 76 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
{
"name": "zod-vue-i18n",
"description": "Translating zod error messages with vue-i18n.",
"author": "24/Consulting",
"license": "MIT",
"keywords": [
"zod",
"vue3",
"i18n",
"vue-i18n"
],
"homepage": "https://github.com/volverjs/zod-vue-18n",
"repository": {
"type": "git",
"url": "https://github.com/volverjs/zod-vue-18n"
},
"bugs": {
"url": "https://github.com/volverjs/zod-vue-18n/issues"
},
"version": "0.0.0",
"engines": {
"node": ">= 16.x"
},
"packageManager": "pnpm@7.8.0",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"build": "tsc && copy src/**/*.d.ts dist",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles",
"credits": "npx @opengovsg/credits-generator"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"locales",
"*.d.ts"
],
"dependencies": {
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"copy": "^0.3.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.26",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./src/*": "./src/*",
"./locales/*": "./locales/*",
"./dist/*": "./dist/*"
"name": "zod-vue-i18n",
"description": "Translating zod error messages with vue-i18n.",
"author": "24/Consulting",
"license": "MIT",
"keywords": [
"zod",
"vue3",
"i18n",
"vue-i18n"
],
"homepage": "https://github.com/volverjs/zod-vue-i18n",
"repository": {
"type": "git",
"url": "https://github.com/volverjs/zod-vue-i18n"
},
"bugs": {
"url": "https://github.com/volverjs/zod-vue-i18n/issues"
},
"version": "0.0.0",
"engines": {
"node": ">= 16.x"
},
"packageManager": "pnpm@7.8.0",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"build": "tsc && copy src/**/*.d.ts dist",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles",
"credits": "npx @opengovsg/credits-generator"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"locales",
"*.d.ts"
],
"dependencies": {
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"copy": "^0.3.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.26",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./src/*": "./src/*",
"./locales/*": "./locales/*",
"./dist/*": "./dist/*"
}
}

0 comments on commit cc0c706

Please sign in to comment.