UNPKG

@qbead/bloch-sphere

Version:

A 3D Bloch Sphere visualisation built with Three.js and TypeScript.

62 lines (61 loc) 1.47 kB
{ "name": "@qbead/bloch-sphere", "main": "./dist/index.js", "module": "./dist/index.mjs", "version": "0.1.0", "type": "module", "description": "A 3D Bloch Sphere visualisation built with Three.js and TypeScript.", "exports": { ".": { "types": "./src/index.d.ts", "bun": "./src/index.ts", "browser": "./dist/index.js", "require": "./dist/index.cjs", "import": "./dist/index.js", "default": "./dist/index.js" } }, "files": [ "dist/**/*", "src/**/*" ], "author": "Jasper Palfree <well.caffeinated@gmail.com>", "license": "MIT", "keywords": [ "quantum", "bloch", "sphere" ], "homepage": "https://qbead.org", "bugs": { "url": "https://github.com/qbead/bloch-sphere/issues" }, "repository": { "type": "git", "url": "git+https://github.com/qbead/bloch-sphere.git" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "docs": "bun run build && typedoc --options typedoc.json src", "prepublishOnly": "bun run build && bun run docs" }, "devDependencies": { "@types/three": "^0.175.0", "bun-types": "latest", "tsup": "^8.4.0", "typedoc": "0.28.1", "typedoc-plugin-markdown": "^4.6.0", "typescript": "^5.8.2" }, "peerDependencies": {}, "dependencies": { "intween": "^1.0.0-beta.7", "three": "^0.175.0" }, "prettier": { "semi": false, "singleQuote": true, "trailingComma": "es5" } }