-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "texlish",
"type": "module",
"version": "0.0.0",
"description": "Better LaTeX that compiles to LaTeX",
"main": "dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"./*": "./*",
"./dist/*": "./dist/*"
},
"repository": {
"type": "git",
"url": "https://github.com/edemaine/texlish.git"
},
"bin": {
"texlish": "dist/texlish"
},
"files": [
"dist/",
"CHANGELOG.md",
"register.js"
],
"engines": {
"node": ">=19 || ^18.6.0 || ^16.17.0"
},
"scripts": {
"build": "bash ./build/build.sh",
"docs:dev": "pnpm build && pnpm --dir docs dev",
"docs:build": "pnpm build && pnpm --dir docs build",
"prepublish": "pnpm build",
"test": "mocha"
},
"author": "Erik Demaine",
"license": "MIT",
"devDependencies": {
"@danielx/civet": "0.7.31",
"@danielx/hera": "0.8.16",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"esbuild": "^0.23.0",
"mocha": "^10.7.3",
"typescript": "^5.5.2"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}