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