language-management-lib
Version:
A TypeScript library for managing language translations in applications with URL parameter support.
62 lines (61 loc) • 1.5 kB
JSON
{
"name": "language-management-lib",
"version": "1.0.3",
"description": "A TypeScript library for managing language translations in applications with URL parameter support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf dist",
"prepublish": "npm run clean && npm run build",
"dev": "ts-node src/examples/basic-usage.ts",
"dev:usage": "ts-node src/examples/your-usage-pattern.ts",
"pub": "npm version patch && npm run build && npm publish --access public"
},
"keywords": [
"language",
"translations",
"i18n",
"localization",
"typescript",
"react",
"url-params"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"ts-node": "^10.0.0",
"rimraf": "^5.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-router-dom": ">=6.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"react-router-dom": {
"optional": true
}
}
}