sveltekit-i18n
Advanced tools
Comparing version 1.5.4 to 2.0.0-rc.0
{ | ||
"name": "sveltekit-i18n", | ||
"version": "1.5.4", | ||
"version": "2.0.0-rc.0", | ||
"description": "Internationalization library for SvelteKit", | ||
"type": "module", | ||
"main": "./lib/index.js", | ||
"types": "./types/index.d.ts", | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": "./lib/index.js", | ||
".": { | ||
"require": "./dist/index.cjs", | ||
"import": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"scripts": { | ||
"dev": "rollup -c -w", | ||
"dev": "tsup --watch", | ||
"test": "jest", | ||
"cleanup": "rm -rf lib types", | ||
"build": "npm run cleanup && rollup -c", | ||
"build": "tsup", | ||
"prepublishOnly": "npm run build", | ||
@@ -21,4 +25,3 @@ "lint": "eslint --fix --ext .ts,.js --ignore-path .gitignore ." | ||
"files": [ | ||
"lib", | ||
"types" | ||
"dist" | ||
], | ||
@@ -30,3 +33,3 @@ "pre-commit": [ | ||
"type": "git", | ||
"url": "git+ssh://git@github.com/jarda-svoboda/sveltekit-i18n.git" | ||
"url": "git+ssh://git@github.com/sveltekit-i18n/lib.git" | ||
}, | ||
@@ -45,5 +48,5 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/jarda-svoboda/sveltekit-i18n/issues" | ||
"url": "https://github.com/sveltekit-i18n/lib/issues" | ||
}, | ||
"homepage": "https://github.com/jarda-svoboda/sveltekit-i18n#readme", | ||
"homepage": "https://github.com/sveltekit-i18n/lib#readme", | ||
"peerDependencies": { | ||
@@ -53,3 +56,2 @@ "svelte": "^3.44.3" | ||
"devDependencies": { | ||
"@rollup/plugin-typescript": "^8.3.0", | ||
"@types/jest": "^27.0.3", | ||
@@ -64,10 +66,11 @@ "@typescript-eslint/eslint-plugin": "^5.7.0", | ||
"pre-commit": "^1.2.2", | ||
"rollup": "^2.61.1", | ||
"rollup-plugin-auto-external": "^2.0.0", | ||
"rollup-plugin-dts": "^4.0.1", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"svelte": "^3.44.3", | ||
"ts-jest": "^27.1.2", | ||
"tsup": "^5.11.13", | ||
"typescript": "^4.5.4" | ||
}, | ||
"dependencies": { | ||
"@sveltekit-i18n/base": "latest", | ||
"@sveltekit-i18n/parser-default": "latest" | ||
} | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
[![npm version](https://badge.fury.io/js/sveltekit-i18n.svg)](https://badge.fury.io/js/sveltekit-i18n) ![](https://github.com/jarda-svoboda/sveltekit-i18n/workflows/Tests/badge.svg) | ||
[![npm version](https://badge.fury.io/js/sveltekit-i18n.svg)](https://badge.fury.io/js/sveltekit-i18n) ![](https://github.com/sveltekit-i18n/lib/workflows/Tests/badge.svg) | ||
@@ -6,2 +6,4 @@ # sveltekit-i18n | ||
__Looking for version `1.x`? You can find it [here](https://github.com/sveltekit-i18n/lib/tree/1.x).__ | ||
## Key features | ||
@@ -16,3 +18,3 @@ | ||
✅ TS support\ | ||
✅ No dependencies | ||
✅ No external dependencies | ||
@@ -116,4 +118,4 @@ ## Usage | ||
## More info | ||
[Docs](https://github.com/jarda-svoboda/sveltekit-i18n/tree/master/docs/README.md)\ | ||
[Examples](https://github.com/jarda-svoboda/sveltekit-i18n/tree/master/examples)\ | ||
[Changelog](https://github.com/jarda-svoboda/sveltekit-i18n/releases) | ||
[Docs](https://github.com/sveltekit-i18n/lib/tree/master/docs/README.md)\ | ||
[Examples](https://github.com/sveltekit-i18n/lib/tree/master/examples)\ | ||
[Changelog](https://github.com/sveltekit-i18n/lib/releases) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13
5
119
8101
3
33
2
+ Added@sveltekit-i18n/base@latest
+ Added@sveltekit-i18n/base@1.3.7(transitive)
+ Added@sveltekit-i18n/parser-default@1.1.1(transitive)