UNPKG

defuss-dson

Version:

Typed serialization/deserialization for JavaScript datatypes (a superset of JSON).

60 lines 1.41 kB
{ "name": "defuss-dson", "version": "1.1.2", "type": "module", "publishConfig": { "access": "public" }, "license": "MIT", "description": "Typed serialization/deserialization for JavaScript datatypes (a superset of JSON).", "keywords": [ "serialization", "deserialization", "json", "superset", "datatypes" ], "repository": { "url": "git+https://github.com/kyr0/defuss.git", "type": "git" }, "scripts": { "clean": "rm -rf ./dist && rm -rf ./node_modules/.bun", "pretest": "bun run build", "prebuild": "bun run clean", "build": "pkgroll", "test": "vitest --run --coverage", "prepublishOnly": "bun run test" }, "author": "Aron Homberg <info@aron-homberg.de>", "sideEffects": false, "exports": { ".": { "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" }, "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } } }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.cts", "files": [ "dist" ], "engines": { "node": "^18.17.1 || ^20.3.0 || >=21.0.0" }, "devDependencies": { "@ungap/structured-clone": "^1.3.0", "@vitest/coverage-v8": "^4.0.17", "pkgroll": "^2.21.5", "tsx": "^4.21.0", "typescript": "^5.9.3", "vitest": "^4.0.17" } }