mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
* feat: support nightly typst (#600) * feat: support for custom certificate configuration (#592) * feat: add certificate option * refactor: move SystemCompilerFeat into tinymist-world * feat: move HttpRegistry as HttpsRegistry into tinymist-world * feat: add reading pem file * feat: update LspUniverseBuilder::build * feat: fill missing argument of LspUniverseBuilder::build * chore: update lock file for additional dependencies * chore: refine comment for certification * refactor: simplify by new constructor * refactor: sort arguments for threaded_http * refactor: split https.rs from lib.rs in tinymist-world * feat: provide package view and local documentation (#596) * feat: move featured components * feat: provide package view and local documentation * stage * fix: compile error by merged commits * fix: ignore system fonts correctly (#597) * feat: adapt nightly typst chore: use mainline typst fix: `leaf_at` second parameter fix: build `Engine` fix: `interpret_mode_at` converage feat: use my typst fix: use `typst::trace` to trace fix: frameitem fix: new kinds fix: new scope fix: lazyhash fix: result fix: new SyntaxKinds fix: utils, lazyhash chore: remove useless imports fix: sink feat: frameitem fix: export svg with page fix: deref span styl: deps fix: lazyhash deps: use my typstyle fix: enable contenthint with feature fix: leaf_at side fix: compile.output deps fix: warnings deps: use new branch name fix: fix merge error ci: update ci branch test: accept new test snap fix: fix compile deps: update typst fix: fix compilation for latest tinymist fix: fix tests fix: fix tests * chore: clean useless imports --------- Co-authored-by: ricOC3 <100465762+ricOC3@users.noreply.github.com> Co-authored-by: Myriad-Dreamin <35292584+Myriad-Dreamin@users.noreply.github.com> * fix: compile warnings and errors * fix: add round_2 back * fix: pdf options * build: bump version to 0.11.33 build: bump version to 0.11.31 (#652) build: lock git branches build: bump version to 0.11.23-rc1 dev: update cargo.toml deps: update typst, typst.ts, typstyle to tagged version (#624) build: bump version to 0.11.29 (#628) dev: nightly-0.11.31 (#649) * deps: update typst * test: fix snapshot fix: dependencies dev: nightly 0.11.33 (#655) * deps: update typst, typst.ts, typstyle * test: fix test hash * fix: compile error * fix: errors * build: bump typst to 0.12.0 * dev: final bumps * build: bump version to 0.11.34-rc1 * build: update cargo.lock * test: update snapshot --------- Co-authored-by: ParaN3xus <136563585+ParaN3xus@users.noreply.github.com> Co-authored-by: ricOC3 <100465762+ricOC3@users.noreply.github.com>
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"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",
|
|
"docs": "shiroa serve -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"
|
|
}
|
|
}
|