runtime/package.json

50 lines
1,023 B
JSON
Raw Normal View History

2026-02-07 19:31:58 +00:00
{
"name": "@quartz-community/runtime",
2026-02-07 19:31:58 +00:00
"version": "0.1.0",
"description": "Browser runtime utilities for Quartz community plugins",
2026-02-07 19:31:58 +00:00
"type": "module",
"license": "MIT",
"author": "Quartz Community",
"homepage": "https://quartz.jzhao.xyz",
"repository": {
"type": "git",
"url": "https://github.com/quartz-community/runtime"
2026-02-07 19:31:58 +00:00
},
"keywords": [
"quartz",
"quartz-plugin",
"runtime",
"browser"
2026-02-07 19:31:58 +00:00
],
"files": [
"dist",
"README.md",
"LICENSE"
2026-02-07 19:31:58 +00:00
],
"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"
2026-02-07 19:31:58 +00:00
},
"devDependencies": {},
2026-02-07 19:31:58 +00:00
"engines": {
"node": ">=22",
"npm": ">=10.9.2"
},
"dependencies": {
"tsup": "^8.5.0",
"typescript": "^5.9.3"
2026-02-07 19:31:58 +00:00
}
}