UNPKG

vecti

Version:

A tiny TypeScript library for 2D vector math.

58 lines 1.25 kB
{ "name": "vecti", "type": "module", "version": "3.1.1", "description": "A tiny TypeScript library for 2D vector math.", "author": { "name": "Jan Müller", "url": "https://github.com/DerYeger" }, "license": "MIT", "homepage": "https://vecti.yeger.eu", "repository": { "type": "git", "url": "git+https://github.com/DerYeger/yeger.git", "directory": "packages/vecti" }, "bugs": { "url": "https://github.com/DerYeger/yeger/issues" }, "keywords": [ "vector", "math", "2d", "typescript" ], "sideEffects": false, "exports": { ".": { "import": { "types": "./dist/types/index.d.mts", "default": "./dist/index.mjs" } } }, "types": "dist/types/index.d.mts", "files": [ "dist" ], "devDependencies": { "@types/node": "22.15.29", "@vue/component-compiler-utils": "3.3.0", "typescript": "5.8.3", "vite": "6.3.5", "@yeger/tsconfig": "2.1.1", "vite-plugin-lib": "3.0.1" }, "publishConfig": { "access": "public" }, "scripts": { "build": "vite build", "check:tsc": "tsc", "check:publish": "publint run --strict", "dev": "vite build --watch", "lint": "yeger-lint", "test": "vitest" } }