@intlayer/core
Version:
Includes core Intlayer functions like translation, dictionary, and utility functions shared across multiple packages.
132 lines (131 loc) • 3.72 kB
JSON
{
"name": "@intlayer/core",
"version": "7.3.14",
"private": false,
"description": "Includes core Intlayer functions like translation, dictionary, and utility functions shared across multiple packages.",
"keywords": [
"intlayer",
"layer",
"abstraction",
"data",
"internationalization",
"i18n",
"typescript",
"javascript",
"json",
"file"
],
"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"
},
"./file": {
"types": "./dist/types/transpiler/file/file.d.ts",
"node": {
"require": "./dist/cjs/transpiler/file/file.cjs",
"import": "./dist/esm/transpiler/file/file.mjs"
},
"browser": {
"require": "./dist/cjs/transpiler/file/fileBrowser.cjs",
"import": "./dist/esm/transpiler/file/fileBrowser.mjs"
}
},
"./file/browser": {
"require": "./dist/cjs/transpiler/file/fileBrowser.cjs",
"import": "./dist/esm/transpiler/file/fileBrowser.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"typesVersions": {
"*": {
".": [
"./dist/types/index.d.ts"
],
"file": [
"./dist/types/transpiler/file/file.d.ts"
],
"file/browser": [
"./dist/types/transpiler/file/file.d.ts"
],
"package.json": [
"./package.json"
]
}
},
"files": [
"./dist",
"./package.json"
],
"scripts": {
"_prepublish": "cp -f ../../../README.md ./README.md",
"build": "tsdown --config tsdown.config.ts",
"build:ci": "tsdown --config tsdown.config.ts",
"clean": "rimraf ./dist .turbo",
"dev": "tsdown --config tsdown.config.ts --watch",
"format": "biome format . --check",
"format:fix": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"process-files": "ts-node src/transpiler/processFilesCLI.ts --dir $npm_config_dir --extension $npm_config_extension --no-node-snapshot",
"prepublish": "echo prepublish temporally disabled to avoid rewrite readme",
"publish": "bun publish || true",
"publish:canary": "bun publish --access public --tag canary || true",
"publish:latest": "bun publish --access public --tag latest || true",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit --project tsconfig.types.json"
},
"dependencies": {
"@intlayer/api": "7.3.14",
"@intlayer/config": "7.3.14",
"@intlayer/dictionaries-entry": "7.3.14",
"@intlayer/types": "7.3.14",
"@intlayer/unmerged-dictionaries-entry": "7.3.14",
"defu": "6.1.4"
},
"devDependencies": {
"@types/node": "24.10.1",
"@utils/ts-config": "1.0.4",
"@utils/ts-config-types": "1.0.4",
"@utils/tsdown-config": "1.0.4",
"rimraf": "6.1.2",
"tsdown": "0.16.8",
"typescript": "5.9.3",
"vitest": "4.0.15"
},
"engines": {
"node": ">=14.18"
},
"publishConfig": {
"access": "public"
},
"bug": {
"url": "https://github.com/aymericzip/intlayer/issues"
}
}