UNPKG

petite-vue-i18n-lite

Version:

A super lightweight and minimal plugin that introduces internationalization into your [Petite Vue](https://github.com/vuejs/petite-vue) app with a simple API.

78 lines (77 loc) 2.24 kB
{ "name": "petite-vue-i18n-lite", "version": "1.0.3", "main": "dist/petite-vue-i18n-lite.cjs.js", "unpkg": "dist/petite-vue-i18n-lite.global.js", "jsdelivr": "dist/petite-vue-i18n-lite.global.js", "module": "dist/petite-vue-i18n-lite.esm-bundler.js", "types": "dist/petite-vue-i18n-lite.d.ts", "sideEffects": false, "scripts": { "serve": "cd playground && yarn serve", "build": "rollup -c rollup.config.js", "build:dts": "api-extractor run --local --verbose && tail -n +2 src/globalExtensions.ts >> dist/vue-i18n-lite.d.ts", "test": "jest", "release": "node scripts/release.js", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1" }, "repository": { "type": "git", "url": "git+https://github.com/niutech/petite-vue-i18n-lite.git" }, "keywords": [ "vue", "petite-vue", "i18n", "vue-i18n", "vue-i18n-lite" ], "author": "Erik Pham & niu tech", "license": "MIT", "bugs": { "url": "https://github.com/niutech/petite-vue-i18n-lite/issues" }, "homepage": "https://github.com/niutech/petite-vue-i18n-lite/tree/master#readme", "files": [ "dist/*.js", "dist/vue-i18n-lite.d.ts", "README.md" ], "devDependencies": { "@microsoft/api-extractor": "^7.14.0", "@rollup/plugin-commonjs": "^18.0.0", "@rollup/plugin-node-resolve": "^11.2.1", "@rollup/plugin-replace": "^2.4.2", "@types/jest": "^26.0.23", "chalk": "^4.1.1", "conventional-changelog-cli": "^2.1.1", "enquirer": "^2.3.6", "execa": "^5.0.0", "jest": "^26.6.3", "lint-staged": "^10.5.4", "minimist": "^1.2.5", "prettier": "2.2.1", "rollup": "^2.45.2", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.30.0", "semver": "^7.3.5", "ts-jest": "^26.5.5", "typescript": "^4.2.4", "yorkie": "^2.0.0" }, "gitHooks": { "pre-commit": "lint-staged", "commit-msg": "node scripts/verifyCommit.js" }, "lint-staged": { "*.js": [ "prettier --write" ], "*.ts?(x)": [ "prettier --parser=typescript --write" ] }, "peerDependencies": { "petite-vue": "*" } }