Source code

Revision control

Copy as Markdown

Other Tools

{
"name": "llhttp",
"version": "9.3.0",
"description": "HTTP parser in LLVM IR",
"main": "lib/llhttp.js",
"types": "lib/llhttp.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"bench": "node --import tsx bench/index.ts",
"build": "node --import tsx bin/generate.ts",
"build-ts": "tsc",
"prebuild-wasm": "npm run wasm -- --prebuild && npm run wasm -- --setup",
"build-wasm": "npm run wasm -- --docker",
"wasm": "node --import tsx bin/build_wasm.ts",
"clean": "rm -rf lib && rm -rf test/tmp",
"prepare": "npm run clean && npm run build-ts",
"test": "node --import tsx ./test/md-test.ts",
"lint": "eslint",
"lint-fix": "eslint --fix",
"postversion": "RELEASE=`node -e \"process.stdout.write(require('./package').version)\"` make -B postversion",
"github-release": "RELEASE_V=`node -e \"process.stdout.write('v' + require('./package').version)\"` make github-release"
},
"repository": {
"type": "git",
},
"keywords": [
"http",
"llvm",
"ir",
"llparse"
],
"author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
"license": "MIT",
"bugs": {
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^4.1.0",
"@types/node": "^22.10.5",
"eslint": "^9.18.0",
"llparse-dot": "^1.0.1",
"llparse-test-fixture": "^5.0.2",
"mdgator": "^1.1.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"dependencies": {
"llparse": "^7.3.0"
}
}