CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json43 linesDownload Raw Back to cookie
1{2  "name": "cookie",3  "version": "1.0.2",4  "description": "HTTP server cookie parsing and serialization",5  "keywords": [6    "cookie",7    "cookies"8  ],9  "repository": "jshttp/cookie",10  "license": "MIT",11  "author": "Roman Shtylman <shtylman@gmail.com>",12  "contributors": [13    "Douglas Christopher Wilson <doug@somethingdoug.com>"14  ],15  "main": "dist/index.js",16  "types": "dist/index.d.ts",17  "files": [18    "dist/"19  ],20  "scripts": {21    "bench": "vitest bench",22    "build": "ts-scripts build",23    "format": "ts-scripts format",24    "prepare": "ts-scripts install",25    "prepublishOnly": "npm run build",26    "specs": "ts-scripts specs",27    "test": "ts-scripts test"28  },29  "devDependencies": {30    "@borderless/ts-scripts": "^0.15.0",31    "@vitest/coverage-v8": "^2.1.2",32    "top-sites": "1.1.194",33    "typescript": "^5.6.2",34    "vitest": "^2.1.2"35  },36  "engines": {37    "node": ">=18"38  },39  "ts-scripts": {40    "project": "tsconfig.build.json"41  }42}43