@andersgee/jsone
Version:
json stringify/parse that also handles Date, BigInt, TypedArray
47 lines • 1.02 kB
JSON
{
"name": "@andersgee/jsone",
"author": "andersgee",
"description": "json stringify/parse that also handles Date, BigInt, TypedArray",
"keywords": [
"json",
"stringify",
"parse",
"Date",
"BigInt",
"TypedArray"
],
"license": "MIT",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/andersgee/jsone"
},
"imports": {
"#src/*": "./dist/*"
},
"devDependencies": {
"@changesets/cli": "^2",
"@types/eslint": "^8",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8",
"prettier": "^3",
"typescript": "^5",
"vitest": "^2.0.2"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"release": "pnpm run build && changeset publish",
"lint": "eslint src --ext .ts",
"test": "vitest run"
}
}