-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
36 lines (36 loc) · 1.27 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
{
"name": "tinymist",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "Apache-2.0",
"workspaces": [
"editors/vscode",
"contrib/typst-preview/editors/vscode",
"tools/editor-tools",
"tools/typst-dom",
"tools/typst-preview-frontend"
],
"scripts": {
"build:editor-tools": "cd tools/editor-tools/ && yarn run build",
"build:preview": "cd tools/typst-preview-frontend && yarn run build && rimraf ../../crates/tinymist-assets/src/typst-preview.html && cpr ./dist/index.html ../../crates/tinymist-assets/src/typst-preview.html",
"maintainers": "typst query MAINTAINERS.typ \"<maintainer-meta>\" --pretty --one --field value --input=action=help",
"docs": "shiroa serve --font-path assets/fonts -w . docs/tinymist",
"docs:typ": "node scripts/link-docs.mjs",
"docs:rs": "cargo doc --workspace --no-deps",
"test:grammar": "cd syntaxes/textmate && yarn run test",
"build:typlite": "cargo build --bin typlite",
"typlite": "target/debug/typlite"
},
"dependencies": {},
"devDependencies": {
"cpr": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.3.3",
"vite": "^4.3.9",
"vite-plugin-singlefile": "^0.13.5",
"vite-plugin-wasm": "^3.2.2",
"vitest": "^0.32.2"
}
}