excel-cursor
Version: 
A powerful and flexible Excel manipulation library with cursor-based navigation
67 lines • 1.81 kB
JSON
{
  "name": "excel-cursor",
  "version": "v1.0.1",
  "description": "A powerful and flexible Excel manipulation library with cursor-based navigation",
  "main": "./dist/cjs/index.js",
  "types": "./dist/esm/index.d.ts",
  "module": "./dist/esm/index.js",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "scripts": {
    "build": "npm run clean && tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json",
    "build:watch": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json --watch",
    "clean": "rimraf dist/",
    "dev": "nodemon",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "prepare": "npm run build",
    "example": "ts-node ./example/index.ts"
  },
  "keywords": [
    "excel",
    "exceljs",
    "spreadsheet",
    "cursor",
    "excel-manipulation",
    "typescript"
  ],
  "author": "npv2k1",
  "license": "MIT",
  "dependencies": {
    "exceljs": "^4.4.0",
    "lodash": "^4.17.21"
  },
  "devDependencies": {
    "@types/jest": "28.1.6",
    "@types/lodash": "^4.14.197",
    "@types/node": "^18.16.19",
    "@typescript-eslint/eslint-plugin": "5.30.7",
    "@typescript-eslint/parser": "5.30.7",
    "cross-env": "^7.0.3",
    "eslint": "8.20.0",
    "eslint-config-prettier": "8.5.0",
    "eslint-plugin-prettier": "4.2.1",
    "jest": "28.1.3",
    "nodemon": "^2.0.22",
    "prettier": "2.7.1",
    "rimraf": "^3.0.2",
    "ts-jest": "28.0.7",
    "ts-node": "^10.9.1",
    "tsconfig-paths": "^4.2.0",
    "typescript": "4.7.4"
  },
  "peerDependencies": {
    "exceljs": "^4.4.0"
  }
}