eccodes-ts
Version:
TypeScript wrapper for eccodes GRIB file handling
79 lines • 2.18 kB
JSON
{
"name": "eccodes-ts",
"version": "0.0.26",
"description": "TypeScript wrapper for eccodes GRIB file handling",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/peterbull/eccodes-ts.git"
},
"bugs": {
"url": "https://github.com/peterbull/eccodes-ts/issues"
},
"homepage": "https://github.com/peterbull/eccodes-ts#readme",
"files": [
"dist",
"dist/types"
],
"main": "./dist/eccodes-ts.cjs",
"module": "./dist/eccodes-ts.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/eccodes-ts.mjs",
"require": "./dist/eccodes-ts.cjs",
"default": "./dist/eccodes-ts.mjs"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js",
"require": "./dist/types/index.js"
}
},
"keywords": [
"eccodes",
"grib",
"grib2",
"gfs",
"weather",
"meteorology",
"surfing"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.3.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@vitest/coverage-istanbul": "2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint-config-prettier": "^9.1.0",
"eslint-js": "github:eslint/js",
"jsdom": "^26.0.0",
"nodejs-polars": "^0.17.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8"
},
"scripts": {
"dev": "vite",
"build": "rm -rf dist && npm run build:types && vite build",
"build:types": "tsc -p tsconfig.build.json",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint:check": "eslint \"src/**/*.{ts,tsx}\""
}
}