react-scripts-intlayer
Version:
Integrate Intlayer with Create React App using custom React scripts for internationalization i18n and advanced Webpack configurations
115 lines • 3.13 kB
JSON
{
"name": "react-scripts-intlayer",
"version": "5.3.11",
"private": false,
"description": "Integrate Intlayer with Create React App using custom React scripts for internationalization i18n and advanced Webpack configurations",
"keywords": [
"intlayer",
"data",
"internationalization",
"multilingual",
"i18n",
"typescript",
"react",
"vite",
"json"
],
"homepage": "https://intlayer.org",
"bugs": {
"url": "https://github.com/aymericzip/intlayer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aymericzip/intlayer.git"
},
"license": "Apache-2.0",
"author": {
"name": "Aymeric PINEAU",
"url": "https://github.com/aymericzip"
},
"contributors": [
{
"name": "Aymeric Pineau",
"email": "ay.pineau@gmail.com",
"url": "https://github.com/aymericzip"
}
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"typesVersions": {
"*": {
"package.json": [
"./package.json"
]
}
},
"bin": {
"react-scripts-intlayer": "./dist/cjs/cli/react-scripts-intlayer.cjs"
},
"files": [
"./dist",
"./package.json"
],
"dependencies": {
"@craco/craco": "^7.1.0",
"node-loader": "^2.1.0",
"process": "^0.11.10",
"webpack": "^5.98.0",
"@intlayer/config": "5.3.11",
"@intlayer/webpack": "5.3.11"
},
"devDependencies": {
"@craco/types": "^7.1.0",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.13.10",
"@types/webpack": "^5.28.5",
"@typescript-eslint/parser": "^8.27.0",
"concurrently": "^9.1.2",
"eslint": "^9.22.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.11",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"@intlayer/backend": "5.3.11",
"@utils/ts-config-types": "1.0.4",
"@utils/eslint-config": "1.0.4",
"@utils/tsup-config": "1.0.4",
"@utils/ts-config": "1.0.4"
},
"peerDependencies": {
"webpack": ">=5.0.0",
"@intlayer/config": "5.3.11",
"@intlayer/webpack": "5.3.11"
},
"engines": {
"node": ">=14.18"
},
"bug": {
"url": "https://github.com/aymericzip/intlayer/issues"
},
"scripts": {
"build": "pnpm build:package & pnpm build:types",
"build:package": "tsup",
"build:types": "tsc --project ./tsconfig.types.json && tsc-alias --project ./tsconfig.types.json",
"clean": "rimraf ./dist",
"dev": "concurrently --prefix none \"tsup --watch\" \"tsc --project ./tsconfig.types.json --watch\" \"tsc-alias --project ./tsconfig.types.json --watch\"",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"reset": "pnpm clean & pnpm build",
"test": "",
"typecheck": "tsup --project ./tsconfig.json --noEmit"
}
}