tupleson
Version:
A hackable JSON serializer/deserializer
98 lines (97 loc) • 2.73 kB
JSON
{
"name": "tupleson",
"version": "0.23.0",
"description": "A hackable JSON serializer/deserializer",
"repository": {
"type": "git",
"url": "https://github.com/trpc/tupleson"
},
"license": "MIT",
"author": "KATT",
"exports": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.mjs"
},
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md",
"src",
"!**/*.test.*",
"!**/test*"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"fix": "pnpm lint --fix && pnpm format:write",
"format": "prettier \"**/*\" --ignore-unknown",
"format:write": "pnpm format --write",
"lint": "eslint . .*js --max-warnings 0 --report-unused-disable-directives",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:package-json": "npmPkgJsonLint .",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"should-semantic-release": "should-semantic-release --verbose",
"test": "vitest",
"tsc": "tsc"
},
"devDependencies": {
"@js-temporal/polyfill": "^0.4.4",
"@release-it/conventional-changelog": "^7.0.2",
"@tsconfig/strictest": "^2.0.2",
"@types/eslint": "^8.44.3",
"@types/event-source-polyfill": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitest/coverage-v8": "^0.34.6",
"console-fail-test": "^0.2.3",
"cspell": "^7.3.7",
"decimal.js": "^10.4.3",
"eslint": "^8.50.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-perfectionist": "^2.1.0",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-vitest": "^0.3.1",
"eslint-plugin-yml": "^1.9.0",
"event-source-polyfill": "^1.0.31",
"jsonc-eslint-parser": "^2.3.0",
"knip": "^2.31.0",
"markdownlint": "^0.31.1",
"markdownlint-cli": "^0.37.0",
"npm-package-json-lint": "^7.0.0",
"npm-package-json-lint-config-default": "^6.0.0",
"openai": "^4.11.1",
"prettier": "^3.0.3",
"prettier-plugin-curly": "^0.1.3",
"prettier-plugin-packagejson": "^2.4.6",
"release-it": "^16.2.1",
"sentences-per-line": "^0.2.1",
"should-semantic-release": "^0.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"yaml-eslint-parser": "^1.2.2"
},
"packageManager": "pnpm@8.7.0",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
},
"pnpm": {
"overrides": {
"tupleson": "link:./"
}
}
}