{
	"name": "@tldraw/tlstore",
	"private": false,
	"description": "A tiny little drawing app (store).",
	"version": "0.0.2-alpha.1",
	"author": "tldraw GB Ltd.",
	"homepage": "https://tldraw.dev",
	"repository": {
		"type": "git",
		"url": "https://github.com/tldraw/tldraw"
	},
	"bugs": {
		"url": "https://github.com/tldraw/tldraw/issues"
	},
	"main": "dist/cjs/index.js",
	"types": "index.d.ts",
	"files": [
		"dist/**/*",
		"src/**/*",
		"index.d.ts"
	],
	"scripts": {
		"test": "jest",
		"test:coverage": "jest --coverage",
		"typecheck": "tsc --build",
		"build": "tsx ../../scripts/build-package.ts",
		"prepack": "tsx ../../scripts/prepack.ts",
		"postpack": "../../scripts/postpack.sh"
	},
	"dependencies": {
		"@tldraw/utils": "0.0.2-alpha.1",
		"lodash.isequal": "^4.5.0",
		"nanoid": "^3.0.0",
		"tlstate": "^0.0.4"
	},
	"devDependencies": {
		"@peculiar/webcrypto": "^1.4.0",
		"@swc/core": "^1.2.204",
		"@swc/jest": "^0.2.21",
		"@types/lodash.isequal": "^4.5.6",
		"raf": "^3.4.1",
		"ts-node-dev": "^1.1.8"
	},
	"jest": {
		"preset": "config/jest/node",
		"setupFiles": [
			"raf/polyfill"
		],
		"moduleNameMapper": {
			"^~(.*)": "<rootDir>/src/$1"
		},
		"transformIgnorePatterns": [
			"node_modules/(?!(nanoid)/)"
		]
	},
	"module": "dist/esm/index.js",
	"source": "src/index.ts"
}