{ "name": "@quartz-community/runtime", "version": "0.1.0", "description": "Browser runtime utilities for Quartz community plugins", "type": "module", "license": "MIT", "author": "Quartz Community", "homepage": "https://quartz.jzhao.xyz", "repository": { "type": "git", "url": "https://github.com/quartz-community/runtime" }, "keywords": [ "quartz", "quartz-plugin", "runtime", "browser" ], "files": [ "dist", "README.md", "LICENSE" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./package.json": "./package.json" }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "sideEffects": false, "scripts": { "build": "tsup", "prepare": "npm run build", "dev": "tsup --watch", "typecheck": "tsc --noEmit" }, "devDependencies": {}, "engines": { "node": ">=22", "npm": ">=10.9.2" }, "dependencies": { "tsup": "^8.5.0", "typescript": "^5.9.3" } }