@intlify/vue-i18n-extensions
Advanced tools
Comparing version 6.0.2 to 6.0.3
{ | ||
"name": "@intlify/vue-i18n-extensions", | ||
"description": "vue-i18n extensions", | ||
"version": "6.0.2", | ||
"version": "6.0.3", | ||
"author": { | ||
@@ -12,2 +12,12 @@ "name": "kazuya kawaguchi", | ||
}, | ||
"homepage": "https://github.com/intlify/vue-i18n-extensions#readme", | ||
"keywords": [ | ||
"extensions", | ||
"i18n", | ||
"optimaization", | ||
"server-side-rendering", | ||
"vue", | ||
"vue-i18n" | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
@@ -70,19 +80,24 @@ "@babel/parser": "^7.24.6", | ||
}, | ||
"files": [ | ||
"dist/cjs/*.js", | ||
"dist/esm/*.js", | ||
"dist/*.d.ts" | ||
], | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "dist/vue-i18n-extensions.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./dist/vue-i18n-extensions.d.ts", | ||
"import": "./dist/esm/index.js", | ||
"require": "./dist/cjs/index.js" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/intlify/vue-i18n-extensions.git" | ||
}, | ||
"engines": { | ||
"node": ">= 18" | ||
}, | ||
"files": [ | ||
"lib/*.js", | ||
"dist/*.d.ts" | ||
], | ||
"homepage": "https://github.com/intlify/vue-i18n-extensions#readme", | ||
"keywords": [ | ||
"extensions", | ||
"i18n", | ||
"optimaization", | ||
"server-side-rendering", | ||
"vue", | ||
"vue-i18n" | ||
], | ||
"license": "MIT", | ||
"lint-staged": { | ||
@@ -101,8 +116,2 @@ "*.{json,md,yml}": [ | ||
}, | ||
"main": "lib/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/intlify/vue-i18n-extensions.git" | ||
}, | ||
"types": "dist/vue-i18n-extensions.d.ts", | ||
"scripts": { | ||
@@ -115,3 +124,5 @@ "changelog": "gh-changelogen --repo=intlify/vue-i18n-extensions", | ||
"build:extract": "api-extractor run -l -c ./api-extractor.json --typescript-compiler-folder node_modules/typescript", | ||
"build:transpile": "tsc -p tsconfig.build.json", | ||
"build:transpile": "run-s build:transpile:*", | ||
"build:transpile:cjs": "tsc -p tsconfig.cjs.json", | ||
"build:transpile:esm": "tsc -p tsconfig.esm.json", | ||
"check-install": "tsx scripts/playwright.ts", | ||
@@ -132,4 +143,4 @@ "clean": "git clean -fdx", | ||
"test:watch": "vitest --no-cache --watch", | ||
"watch": "tsc -p tsconfig.build.json --watch" | ||
"watch": "tsc -p tsconfig.cjs.json --watch" | ||
} | ||
} |
10937