package.json (1000B)
1 { 2 "name": "@finwo/crc16-xmodem", 3 "version": "1.0.3", 4 "description": "Single-purpose package to generate crc16-xmodem codes", 5 "main": "dist/index.js", 6 "scripts": { 7 "build": "node util/build.js", 8 "postpublish": "PACKAGE_VERSION=$(jq -r .version < package.json) && PACKAGE_NAME=$(jq -r .name < package.json) && npm deprecate \"${PACKAGE_NAME}@<${PACKAGE_VERSION}\" \"Rolling release, please update to ${PACKAGE_VERSION}\"", 9 "test": "find test -name '*.ts' | sort | xargs -P 1 -n 1 npx ts-node" 10 }, 11 "files": [ 12 "README.md", 13 "LICENSE", 14 "dist/*" 15 ], 16 "devDependencies": { 17 "@types/node": "^22.10.5", 18 "@types/tape": "^5.8.0", 19 "esbuild": "^0.24.2", 20 "esbuild-plugin-d.ts": "^1.3.1", 21 "fast-glob": "^3.3.3", 22 "tape": "^5.9.0" 23 }, 24 "repository": { 25 "type": "git", 26 "url": "git+https://github.com/finwo/crc16-xmodem.ts.git" 27 }, 28 "author": "Yersa Nordman <finwo@pm.me>", 29 "funding": "https://github.com/sponsors/finwo", 30 "license": "MIT-0" 31 }