The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/i18n/package.json

53 lines
1.5 KiB

{
"name": "@rocket.chat/i18n",
"version": "1.12.0",
"private": true,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./dist/resources": {
"types": "./dist/resources.d.ts",
"import": "./dist/resources.js",
"require": "./dist/resources.cjs"
},
"./dist/languages": {
"types": "./dist/languages.d.ts",
"import": "./dist/languages.js",
"require": "./dist/languages.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && node --experimental-transform-types ./src/scripts/build.mts",
"check": "node --experimental-transform-types ./src/scripts/check.mts",
"replace-sprintf": "node --experimental-transform-types ./src/scripts/replace-sprintf.mts",
"lint": "eslint . && node --experimental-transform-types ./src/scripts/check.mts",
"lint:fix": "eslint . --fix && node --experimental-transform-types ./src/scripts/check.mts --fix",
"test": "jest",
"testunit": "jest"
},
"devDependencies": {
"@rocket.chat/jest-presets": "workspace:~",
"@rocket.chat/tools": "workspace:~",
"@rocket.chat/tsconfig": "workspace:*",
"eslint": "~8.45.0",
"i18next": "~23.4.9",
"jest": "~30.2.0",
"typescript": "~5.9.3"
},
"peerDependencies": {
"@rocket.chat/tools": "workspace:~",
"i18next": "*"
},
"volta": {
"extends": "../../package.json"
}
}