Path: blob/main/packages/quarto-types/package.json
6463 views
{1"name": "@quarto/types",2"version": "0.1.0",3"description": "TypeScript type definitions for Quarto engine development",4"types": "src/index.ts",5"files": [6"src",7"README.md",8"LICENSE"9],10"scripts": {11"typecheck": "tsc --noEmit",12"build": "dts-bundle-generator -o ./dist/index.d.ts --export-referenced-types=false ./src/index.ts",13"prebuild": "npm run typecheck"14},15"keywords": [16"quarto",17"typescript",18"types",19"engine"20],21"author": "Quarto",22"license": "MIT",23"publishConfig": {24"access": "public"25},26"repository": {27"type": "git",28"url": "https://github.com/quarto-dev/quarto-cli.git",29"directory": "packages/quarto-types"30},31"bugs": {32"url": "https://github.com/quarto-dev/quarto-cli/issues"33},34"homepage": "https://github.com/quarto-dev/quarto-cli/tree/main/packages/quarto-types#readme",35"devDependencies": {36"@types/node": "^24.9.1",37"dts-bundle-generator": "^9.5.1",38"typescript": "^5.9.3"39}40}414243