@haz3y0ne/parsexl
Version:
Parses Excel formulas into a clean, well-typed abstract syntax tree you can analyse or evaluate in TypeScript.
45 lines (44 loc) • 1.06 kB
JSON
{
"name": "@haz3y0ne/parsexl",
"version": "0.0.4",
"description": "Parses Excel formulas into a clean, well-typed abstract syntax tree you can analyse or evaluate in TypeScript.",
"author": "Chris Moran",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/haz3y0ne/parsexl"
},
"keywords": [
"excel",
"formula",
"parser",
"ast",
"typescript",
"pratt"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.json"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"husky": "^9.1.7",
"jest": "^30.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
}
}