-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 915 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "@quarto/mapped-string",
"version": "0.1.8",
"description": "A string data structure with integrated source maps.",
"license": "MIT",
"author": {
"name": "Posit PBC"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quarto-dev/quarto.git"
},
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": ["dist"],
"dependencies": {
"tsconfig": "*",
"typescript": "^5.4.2",
"ansi-colors": "^4.1.3",
"@quarto/tidyverse-errors": "^0.1.9"
},
"devDependencies": {
"tsx": "^4.7.1"
},
"scripts": {
"build": "npm run build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"test": "node --import tsx --test test/*.test.ts",
"clean": "rm -rf dist",
"publish": "npm run clean && npm run build && npm publish"
}
}