{
	"name": "@scottrabin/decoder",
	"version": "0.1.0",
	"description": "Decode JSON into application types",
	"main": "dist/index.js",
	"types": "dist/index.d.ts",
	"author": "Scott Rabin <github@scottrabin.com>",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "https://github.com/scottrabin/decoder.git"
	},
	"keywords": [
		"typescript",
		"decode",
		"parse"
	],
	"files": [
		"dist/**/*"
	],
	"scripts": {
		"build": "rm -rf dist/ && tsc",
		"lint": "eslint src/",
		"docs": "typedoc --theme markdown --disableSources --readme none --hideBreadcrumbs --categorizeByGroup false --sort alphabetical --out docs src/index.ts",
		"test": "jest"
	},
	"dependencies": {
		"is-js": "^0.2.1"
	},
	"devDependencies": {
		"@types/jest": "^27.4.1",
		"@types/node": "^17.0.21",
		"@typescript-eslint/eslint-plugin": "^5.15.0",
		"@typescript-eslint/parser": "^5.15.0",
		"eslint": "^8.11.0",
		"eslint-plugin-prettier": "^4.0.0",
		"jest": "^27.5.1",
		"prettier": "^2.6.0",
		"ts-jest": "^27.1.3",
		"ts-node": "^10.7.0",
		"typedoc": "^0.22.13",
		"typedoc-plugin-markdown": "^3.11.14",
		"typescript": "^4.6.2"
	}
}
