{
	"name": "@tldraw/primitives",
	"private": false,
	"description": "A tiny little drawing app (primitives).",
	"version": "2.0.0-alpha.8",
	"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/**/*",
		"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",
		"lint": "tsx ../../scripts/lint.ts"
	},
	"dependencies": {
		"@tldraw/tlschema": "2.0.0-alpha.8"
	},
	"devDependencies": {
		"@swc/core": "^1.2.204",
		"@swc/jest": "^0.2.21",
		"ts-node-dev": "^1.1.8",
		"tsup": "*"
	},
	"jest": {
		"preset": "config/jest/node",
		"moduleNameMapper": {
			"^~(.*)": "<rootDir>/src/$1"
		},
		"transformIgnorePatterns": [
			"node_modules/(?!(nanoid|escape-string-regexp)/)"
		]
	},
	"module": "dist/esm/index.js",
	"source": "src/index.ts"
}