UNPKG

@uor-foundation/geometry

Version:

Layer 5: Geometric manifolds - the shape of mathematical space

64 lines (63 loc) 1.59 kB
{ "name": "@uor-foundation/geometry", "version": "0.1.0", "description": "Layer 5: Geometric manifolds - the shape of mathematical space", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:integration": "jest --testPathPattern=integration", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "typecheck": "tsc --noEmit", "clean": "rm -rf dist" }, "keywords": [ "mathematics", "geometry", "manifolds", "metrics", "geodesics" ], "author": "UOR Foundation", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/UOR-Foundation/math-ts.git", "directory": "packages/geometry" }, "publishConfig": { "access": "public" }, "dependencies": { "@uor-foundation/field-substrate": "^0.1.0", "@uor-foundation/resonance": "^0.1.0", "@uor-foundation/topology": "^0.1.0", "@uor-foundation/operators": "^0.1.0", "@uor-foundation/algebra": "^0.1.0" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.24", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^8.57.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "typescript": "^5.4.2" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "testMatch": [ "**/__tests__/**/*.test.ts", "**/tests/**/*.test.ts" ] } }