{
  "name": "rambda",
  "version": "11.2.0",
  "scripts": {
    "out": "yarn populatedocs && yarn populatereadme && yarn build && yarn create-docsify",
    "build": "yarn build:main && yarn build:web && yarn build:esm",
    "build:main": "rollup rambda.js --file dist/rambda.cjs --format cjs",
    "build:esm": "rollup rambda.js --file dist/rambda.js --format es",
    "build:web": "rollup rambda.js --file dist/rambda.umd.js --format umd --name \"R\"",
    "populatedocs": "cd ../rambda-scripts && yarn populate:docs",
    "populatereadme": "cd ../rambda-scripts && yarn populate:readme",
    "lint": "cd source && run lint:folder > lint-output.txt",
    "lint:typings": "tsc",
    "test:file": "node scripts/tasks/run/run-test.js",
    "test:ci": "vitest run",
    "test": "vitest run --watch -u",
    "test:typings": "vitest run --config vitest.typings.config.js",
    "create-docsify": "cd ../rambda-scripts && yarn create-docsify",
    "deps": "run dep:next 10",
    "x": "run dep:stable 10",
    "ts": "yarn test:typings"
  },
  "niketaScripts": {
    "**/*.js": "yarn test:file"
  },
  "type": "module",
  "exports": {
    "require": {
      "types": "./index.d.cts",
      "default": "./dist/rambda.cjs"
    },
    "types": "./index.d.ts",
    "default": "./dist/rambda.js"
  },
  "main": "dist/rambda.cjs",
  "module": "dist/rambda.js",
  "dependencies": {},
  "devDependencies": {
    "@types/mocha": "10.0.10",
    "@types/node": "25.8.0",
    "@vitest/coverage-v8": "5.0.0-beta.2",
    "helpers-fn": "2.1.1",
    "lodash": "4.18.1",
    "radashi": "13.0.0-beta.ffa4778",
    "rambdax": "11.3.1",
    "ramda": "0.32.0",
    "remeda": "2.34.1",
    "rollup": "4.60.4",
    "types-ramda": "0.31.0",
    "typescript": "6.0.3",
    "vitest": "5.0.0-beta.2"
  },
  "jest": {
    "testEnvironment": "node",
    "testRegex": ".*\\.(spec|test)\\.js$",
    "setupFilesAfterEnv": [
      "./files/testSetup.js"
    ],
    "collectCoverageFrom": [
      "source/*.js",
      "!_internals",
      "!benchmarks"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/selfrefactor/rambda.git"
  },
  "license": "MIT",
  "author": "self_refactor",
  "description": "Lightweight and faster alternative to Ramda with included TS definitions",
  "keywords": [
    "curried",
    "fp",
    "functional",
    "generics",
    "lodash",
    "ramda",
    "remeda",
    "stdlib",
    "toolkit",
    "ts",
    "types",
    "typescript",
    "utilities",
    "utility",
    "utils"
  ],
  "homepage": "https://github.com/selfrefactor/rambda#readme",
  "files": [
    "dist",
    "src",
    "CHANGELOG.md",
    "index.d.ts",
    "index.d.cts",
    "rambda.js"
  ],
  "sideEffects": false,
  "umd": "./dist/rambda.umd.js",
  "types": "./index.d.cts"
}
