{
	"name": "@e280/kv",
	"version": "0.2.0",
	"description": "tiny run-anywhere key-value database",
	"license": "MIT",
	"author": "Chase Moskal <chasemoskal@gmail.com>",
	"type": "module",
	"main": "./x/index.js",
	"files": [
		"x",
		"s"
	],
	"exports": {
		".": "./x/index.js"
	},
	"scripts": {
		"build": "rm -rf x && mkdir x && tsc",
		"test": "node x/test.js",
		"dev": "octo 'tsc -w' 'node --watch x/test.js'",
		"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +"
	},
	"dependencies": {
		"@e280/stz": "^0.3.10"
	},
	"devDependencies": {
		"@e280/octo": "^0.1.5",
		"@e280/science": "^0.1.12",
		"@types/node": "^26.2.0",
		"typescript": "^7.0.2"
	},
	"keywords": [
		"kv",
		"key-value",
		"database",
		"storage",
		"typescript",
		"json",
		"indexeddb",
		"localstorage",
		"leveldb",
		"in-memory",
		"browser",
		"nodejs"
	],
	"homepage": "https://github.com/e280/kv#readme",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/e280/kv.git"
	},
	"bugs": {
		"url": "https://github.com/e280/kv/issues"
	}
}
