-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
58
{
"name": "astro-typst",
"type": "module",
"version": "0.6.0",
"packageManager": "pnpm@9.9.0",
"repository": {
"type": "git",
"url": "https://github.com/OverflowCat/astro-typst.git"
},
"homepage": "https://github.com/OverflowCat/astro-typst",
"description": "Use Typst within Astro",
"keywords": [
"typst",
"astro",
"renderer",
"astro-component",
"withastro"
],
"main": "src/index.js",
"types": "src/index.d.ts",
"author": {
"name": "OverflowCat",
"email": "overflowcat@gmail.com",
"url": "https://overflow.cat"
},
"license": "MIT",
"files": [
"src",
"global.d.ts",
"public"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"compile": "tsc",
"preview": "astro preview",
"pub": "pnpm compile && pnpm publish --no-git-checks",
"astro": "astro"
},
"dependencies": {
"@myriaddreamin/typst-ts-node-compiler": "0.5.0-rc6",
"@myriaddreamin/typst-ts-renderer": "0.5.0-rc6",
"@myriaddreamin/typst.ts": "0.5.0-rc6",
"@rollup/plugin-node-resolve": "^15.2.3",
"astro": "^4.15.4",
"cheerio": "1.0.0-rc.12",
"vite": "^5.4.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@types/node": "^22.5.4",
"typescript": "^5.6.2"
},
"peerDependencies": {
"astro": ">= 3.0.0"
}
}