-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.46 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
50
51
52
53
{
"name": "tex-to-typst",
"version": "0.0.9",
"description": "Translate tex math code to typst",
"keywords": [
"Typst",
"LaTeX"
],
"author": "Rowan Cockett <[email protected]>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/curvenote/tex-to-typst",
"repository": {
"type": "git",
"url": "git+https://github.com/curvenote/tex-to-typst.git"
},
"bugs": {
"url": "https://github.com/curvenote/tex-to-typst/issues"
},
"scripts": {
"prepublishOnly": "npm run build && npm run test",
"clean": "rm -rf dist",
"lint": "eslint \"src/**/*.ts*\" -c ./.eslintrc.cjs",
"lint:format": "prettier --check \"src/**/*.{ts,tsx,md}\"",
"test": "vitest run",
"test:watch": "vitest watch",
"build:esm": "tsc --project ./tsconfig.json --module es2015 --outDir dist --declaration",
"build": "npm-run-all -l clean -p build:esm"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"eslint": "^8.42.0",
"eslint-config-curvenote": "latest",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
},
"dependencies": {
"@unified-latex/unified-latex": "^1.4.0",
"@unified-latex/unified-latex-util-arguments": "^1.4.0",
"@unified-latex/unified-latex-util-parse": "^1.4.0"
}
}