-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.47 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "typst",
"version": "0.10.0-8",
"description": "📦 Typst for JavaScript",
"keywords": [
"typesetting",
"markup",
"typesetter",
"typeset",
"typst",
"latex",
"markdown",
"pdf"
],
"homepage": "https://typst.community/typst.js/",
"bugs": "https://github.com/typst-community/typst.js/issues",
"repository": "github:typst-community/typst.js",
"license": "Apache-2.0",
"contributors": [
"Jacob Hummer <[email protected]> (https://jcbhmr.me/)"
],
"type": "module",
"exports": "./dist/index.js",
"bin": "dist/main.js",
"files": [
"dist"
],
"scripts": {
"pretest": "tsc",
"test": "node --test",
"prepare": "bash tools/prepare.sh",
"build": "tsc",
"postbuild": "bash tools/generate-dist-package.sh --all",
"format": "prettier -w .",
"lint": "tsc --noEmit",
"prepublishOnly": "bash tools/prepublishOnly.sh",
"build:docs": "typedoc",
"postversion": "node tools/postversion.js"
},
"dependencies": {
"execa": "^8.0.1"
},
"devDependencies": {
"@types/node": "^20.10.4",
"prettier": "^3.1.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"optionalDependencies": {
"@typst-community/typst-darwin-arm64": "0.10.0-8",
"@typst-community/typst-darwin-x64": "0.10.0-8",
"@typst-community/typst-linux-arm64": "0.10.0-8",
"@typst-community/typst-linux-x64": "0.10.0-8",
"@typst-community/typst-win32-x64": "0.10.0-8"
}
}