-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.6 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.6 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
{
"name": "@siglum/engine",
"version": "0.1.4",
"description": "A browser-based LaTeX compiler. TeX Live 2025 running in WebAssembly, with lazy bundle loading and on-demand package fetching.",
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./compiler": {
"types": "./types/compiler.d.ts",
"default": "./src/compiler.js"
},
"./bundles": {
"types": "./types/bundles.d.ts",
"default": "./src/bundles.js"
},
"./ctan": {
"types": "./types/ctan.d.ts",
"default": "./src/ctan.js"
},
"./storage": {
"types": "./types/storage.d.ts",
"default": "./src/storage.js"
}
},
"files": [
"src/",
"types/"
],
"scripts": {
"dev": "bun serve-local.ts",
"proxy": "cd packages && bun run ctan-proxy.ts",
"build:types": "tsc",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SiglumProject/siglum-engine.git"
},
"keywords": [
"latex",
"tex",
"pdf",
"wasm",
"webassembly",
"browser",
"compilation"
],
"author": "Siglum Project",
"license": "MIT",
"bugs": {
"url": "https://github.com/SiglumProject/siglum-engine/issues"
},
"homepage": "https://github.com/SiglumProject/siglum-engine#readme",
"dependencies": {
"@siglum/filesystem": "^0.2.1",
"blake3-wasm": "2.1.5",
"xzwasm": "^0.1.2"
},
"devDependencies": {
"fflate": "^0.8.2",
"jszip": "^3.10.1",
"typescript": "^5.0.0"
}
}