@interweb-it/jam-codec
Version:
TypeScript implementation of the JAM codec
64 lines (63 loc) • 1.55 kB
JSON
{
"name": "@interweb-it/jam-codec",
"version": "0.1.5",
"description": "TypeScript implementation of the JAM codec",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/interweb-it/jam-codec.git"
},
"bugs": {
"url": "https://github.com/interweb-it/jam-codec/issues"
},
"homepage": "https://github.com/interweb-it/jam-codec#readme",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "yarn build",
"clean": "rimraf dist",
"prebuild": "yarn clean"
},
"keywords": [
"jam",
"codec",
"serialization",
"binary"
],
"author": "JAM Team",
"license": "Apache-2.0",
"packageManager": "yarn@4.1.1",
"devDependencies": {
"@jest/globals": "30.0.0-beta.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
}
}