110 lines
2.3 KiB
JSON
110 lines
2.3 KiB
JSON
{
|
|
"name": "@lingui-solid/babel-plugin-lingui-macro",
|
|
"version": "5.1.3",
|
|
"description": "Babel plugin for transforming Lingui Macros",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"contributors": [
|
|
{
|
|
"name": "Timofei Iatsenko",
|
|
"email": "timiatsenko@gmail.com"
|
|
}
|
|
],
|
|
"author": {
|
|
"name": "Tomáš Ehrlich",
|
|
"email": "tomas.ehrlich@gmail.com"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"babel-plugin",
|
|
"i18n",
|
|
"internationalization",
|
|
"i10n",
|
|
"localization",
|
|
"i9n",
|
|
"translation",
|
|
"multilingual"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf ./dist && unbuild",
|
|
"stub": "unbuild --stub"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
},
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"./macro": {
|
|
"require": {
|
|
"types": "./dist/macro.d.cts",
|
|
"default": "./dist/macro.cjs"
|
|
},
|
|
"import": {
|
|
"types": "./dist/macro.d.mts",
|
|
"default": "./dist/macro.mjs"
|
|
}
|
|
},
|
|
"./ast": {
|
|
"require": {
|
|
"types": "./dist/ast.d.cts",
|
|
"default": "./dist/ast.cjs"
|
|
},
|
|
"import": {
|
|
"types": "./dist/ast.d.mts",
|
|
"default": "./dist/ast.mjs"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"dist/"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Azq2/js-lingui-solid.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Azq2/js-lingui-solid/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.20.12",
|
|
"@babel/runtime": "^7.20.13",
|
|
"@babel/types": "^7.20.7",
|
|
"@lingui/conf": "^5.1.2",
|
|
"@lingui/core": "^5.1.2",
|
|
"@lingui/message-utils": "^5.1.2"
|
|
},
|
|
"peerDependencies": {
|
|
"babel-plugin-macros": "2 || 3"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"babel-plugin-macros": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@babel/parser": "^7.20.15",
|
|
"@babel/traverse": "^7.20.12",
|
|
"@lingui/macro": "^5.1.2",
|
|
"@lingui/react": "^5.1.2",
|
|
"@types/babel-plugin-macros": "^2.8.5",
|
|
"prettier": "2.8.3",
|
|
"rimraf": "^6.0.1",
|
|
"unbuild": "2.0.0"
|
|
}
|
|
}
|