{
	"name": "linearly",
	"version": "0.36.0",
	"description": "Matrix and vector library with immutable data types",
	"main": "./lib/cjs/index.js",
	"module": "./lib/esm/index.js",
	"types": "./lib/esm/index.d.ts",
	"sideEffects": false,
	"scripts": {
		"dev": "concurrently npm:dev:*",
		"dev:test": "vitest",
		"dev:api": "typedoc src/index.ts --watch",
		"dev:doc": "vuepress dev docs",
		"build": "tsc && tsc -p tsconfig.cjs.json",
		"build:api": "typedoc src/index.ts",
		"build:doc": "npm run build:api; vuepress build docs",
		"lint": "eslint",
		"test": "vitest run",
		"prepare": "npm run build",
		"preversion": "npm run test",
		"postversion": "git push && git push --tags && npm publish"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/baku89/linearly.git"
	},
	"keywords": [
		"matrix",
		"vector",
		"linear",
		"algebra",
		"graphics",
		"transform"
	],
	"author": "Baku Hashimoto <mail@baku89.com>",
	"files": [
		"lib"
	],
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/baku89/linearly/issues"
	},
	"homepage": "https://baku89.github.io/linearly",
	"devDependencies": {
		"@typescript-eslint/eslint-plugin": "^8.6.0",
		"@typescript-eslint/parser": "^8.6.0",
		"@vuepress/bundler-vite": "^2.0.0-rc.26",
		"@vuepress/plugin-shiki": "^2.0.0-rc.123",
		"@vuepress/theme-default": "^2.0.0-rc.123",
		"concurrently": "^9.0.1",
		"eslint": "^9.10.0",
		"eslint-config-prettier": "^9.1.0",
		"eslint-plugin-simple-import-sort": "^12.1.1",
		"eslint-plugin-unused-imports": "^4.1.4",
		"markdown-it-cjk-friendly": "^2.0.2",
		"prettier": "^3.3.3",
		"sass-embedded": "^1.86.0",
		"ts-node": "^10.9.2",
		"typedoc": "^0.28.1",
		"typedoc-plugin-markdown": "^4.6.0",
		"typescript": "^5.6.2",
		"vitest": "^2.1.1",
		"vuepress": "^2.0.0-rc.26"
	}
}
