{
  "name": "@rapidsai/cudf",
  "version": "22.12.1",
  "description": "cuDF - NVIDIA RAPIDS GPU DataFrame Library",
  "license": "Apache-2.0",
  "main": "index.js",
  "types": "build/js",
  "author": "NVIDIA, Inc. (https://nvidia.com/)",
  "maintainers": [
    "Paul Taylor <paul.e.taylor@me.com>"
  ],
  "homepage": "https://github.com/rapidsai/node/tree/main/modules/cudf#readme",
  "bugs": {
    "url": "https://github.com/rapidsai/node/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rapidsai/node.git"
  },
  "scripts": {
    "install": "npx rapidsai-install-native-module",
    "clean": "rimraf build doc compile_commands.json",
    "doc": "rimraf doc && typedoc --options typedoc.js",
    "test": "node -r dotenv/config node_modules/.bin/jest -c jest.config.js",
    "build": "yarn tsc:build && yarn cpp:build",
    "build:debug": "yarn tsc:build && yarn cpp:build:debug",
    "compile": "yarn tsc:build && yarn cpp:compile",
    "compile:debug": "yarn tsc:build && yarn cpp:compile:debug",
    "rebuild": "yarn tsc:build && yarn cpp:rebuild",
    "rebuild:debug": "yarn tsc:build && yarn cpp:rebuild:debug",
    "cpp:clean": "npx cmake-js clean -O build/Release",
    "cpp:clean:debug": "npx cmake-js clean -O build/Debug",
    "cpp:build": "npx cmake-js build -g -O build/Release",
    "cpp:build:debug": "npx cmake-js build -g -D -O build/Debug",
    "cpp:compile": "npx cmake-js compile -g -O build/Release",
    "postcpp:compile": "npx rapidsai-merge-compile-commands",
    "cpp:compile:debug": "npx cmake-js compile -g -D -O build/Debug",
    "postcpp:compile:debug": "npx rapidsai-merge-compile-commands",
    "cpp:configure": "npx cmake-js configure -g -O build/Release",
    "postcpp:configure": "npx rapidsai-merge-compile-commands",
    "cpp:configure:debug": "npx cmake-js configure -g -D -O build/Debug",
    "postcpp:configure:debug": "npx rapidsai-merge-compile-commands",
    "cpp:rebuild": "npx cmake-js rebuild -g -O build/Release",
    "postcpp:rebuild": "npx rapidsai-merge-compile-commands",
    "cpp:rebuild:debug": "npx cmake-js rebuild -g -D -O build/Debug",
    "postcpp:rebuild:debug": "npx rapidsai-merge-compile-commands",
    "cpp:reconfigure": "npx cmake-js reconfigure -g -O build/Release",
    "postcpp:reconfigure": "npx rapidsai-merge-compile-commands",
    "cpp:reconfigure:debug": "npx cmake-js reconfigure -g -D -O build/Debug",
    "postcpp:reconfigure:debug": "npx rapidsai-merge-compile-commands",
    "tsc:clean": "rimraf build/js",
    "tsc:build": "yarn tsc:clean && tsc -p ./tsconfig.json",
    "tsc:watch": "yarn tsc:clean && tsc -p ./tsconfig.json -w",
    "dev:cpack:enabled": "echo $npm_package_name"
  },
  "dependencies": {
    "@rapidsai/cuda": "~22.12.1",
    "@rapidsai/rmm": "~22.12.1",
    "apache-arrow": "^9.0.0"
  },
  "devDependencies": {
    "ix": "4.4.1"
  },
  "files": [
    "LICENSE",
    "README.md",
    "index.js",
    "package.json",
    "CMakeLists.txt",
    "src/node_cudf",
    "build/js"
  ]
}
