paccurate
Version:
Reduce fulfillment costs and wasted material by finding the optimal way to pack every shipment, in real time.
88 lines (87 loc) • 2.52 kB
JSON
{
"name": "paccurate",
"version": "2.4.2",
"description": "Reduce fulfillment costs and wasted material by finding the optimal way to pack every shipment, in real time.",
"author": "Mark <mark@remarkablemark.org>",
"main": "cjs/index.js",
"module": "esm/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.build.json",
"build:esm": "tsc --project tsconfig.build.json --module nodenext --outDir esm",
"build:types": "openapi-typescript src/openapi.json --output src/openapi.ts --prettier-config .prettierrc.json",
"clean": "rm -rf cjs coverage docs esm",
"docs": "typedoc",
"docs:watch": "npm run docs -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --project tsconfig.test.json",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm run lint:tsc && npm run test:ci && npm run test:esm && npm run clean && npm run build",
"test": "jest",
"test:ci": "CI=true jest --ci --colors --coverage",
"test:esm": "npm run build:esm && node --test **/*.test.mjs",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/paccurate"
},
"bugs": {
"url": "https://github.com/remarkablemark/paccurate/issues"
},
"keywords": [
"paccurate",
"pack",
"ship",
"rest",
"api"
],
"dependencies": {
"node-fetch": "2.7.0"
},
"devDependencies": {
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@eslint/js": "10.0.1",
"@types/jest": "30.0.0",
"@types/node": "25.9.3",
"@types/node-fetch": "2.6.13",
"dotenv": "17.4.2",
"eslint": "10.5.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-simple-import-sort": "13.0.0",
"eslint-plugin-tsdoc": "0.5.2",
"globals": "17.6.0",
"husky": "9.1.7",
"jest": "30.4.2",
"lint-staged": "17.0.7",
"openapi-typescript": "7.13.0",
"prettier": "3.8.4",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"typedoc": "0.28.19",
"typescript": "5.9.3",
"typescript-eslint": "8.61.1"
},
"peerDependencies": {
"@types/node-fetch": "2"
},
"peerDependenciesMeta": {
"@types/node-fetch": {
"optional": true
}
},
"files": [
"cjs/",
"esm/"
],
"engines": {
"node": ">=14"
},
"license": "MIT"
}