-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.82 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "astro-typst",
"type": "module",
"version": "0.12.3",
"packageManager": "pnpm@10.11.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",
"astro-integration",
"astro-component",
"withastro"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "OverflowCat",
"email": "overflowcat@gmail.com",
"url": "https://overflow.cat"
},
"license": "Apache-2.0",
"files": [
"src",
"dist",
"global.d.ts",
"public"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "tsc && astro check && astro build",
"compile": "tsc",
"preview": "astro preview",
"pub": "pnpm compile && pnpm publish --no-git-checks",
"pb": "pnpm compile && pnpm publish --no-git-checks --tag beta",
"astro": "astro"
},
"dependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"astro-integration-kit": "^0.19.0",
"rehype-stringify": "^10.0.1",
"typstx": "0.0.1-beta.1",
"unified": "^11.0.5"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.3.0",
"@types/node": "^22.18.0",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.8",
"astro": "5.13.5",
"astro-expressive-code": "^0.41.3",
"react": "^19.1.1",
"react-confetti-explosion": "^3.0.3",
"react-dom": "^19.1.1",
"typescript": "^5.9.2",
"vite": "^6.3.5"
},
"peerDependencies": {
"@myriaddreamin/typst-ts-node-compiler": ">=0.6.1-rc2",
"@myriaddreamin/typst-ts-renderer": ">=0.6.1-rc2",
"@myriaddreamin/typst.ts": ">=0.6.1-rc2",
"astro": ">= 3.0.0",
"cheerio": ">=1.0.0 <2.0.0"
}
}