@latitude-data/query_result
Version:
A library for working with query results at Latitude
35 lines • 885 B
JSON
{
"name": "@latitude-data/query_result",
"description": "A library for working with query results at Latitude",
"version": "0.2.0",
"license": "LGPL",
"type": "module",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"prettier": "^3.1.1",
"rollup": "^4.10.0",
"vitest": "^1.4.0",
"@latitude-data/eslint-config": "0.1.0",
"@latitude-data/typescript": "0.1.0"
},
"dependencies": {
"json-2-csv": "^5.5.1"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"lint": "eslint . --max-warnings 0 --ext .ts src",
"tc": "tsc --noEmit",
"prettier": "prettier --write src/**/*.ts",
"test": "vitest --run",
"test:watch": "vitest"
}
}