-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "jslatex",
"version": "0.3.0",
"description": "Supercharging LaTeX with JavaScript!",
"license": "MIT",
"exports": "./src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/leonzalion/jslatex.git"
},
"homepage": "https://github.com/leonzalion/jslatex#readme",
"author": {
"name": "Leon Si",
"email": "contact@leonzalion.com",
"url": "https://leonzalion.com"
},
"type": "module",
"bin": {
"jslatex": "./bin/cli.js"
},
"scripts": {
"prepare": "lion-git-hooks",
"release": "lionp",
"start": "node-ts ./src/bin/cli.ts",
"build": "node-ts ./scripts/build.ts",
"test": "vitest run",
"lint": "eslint --cache --fix .",
"prettier": "prettier --write .",
"tc": "tsc --noEmit"
},
"dependencies": {
"commander": "^9.1.0",
"embedded-ts": "^0.3.0",
"escape-latex": "^1.2.0",
"escape-string-regexp": "^5.0.0",
"outdent": "^0.8.0",
"ramda": "^0.28.0"
},
"devDependencies": {
"@types/escape-latex": "^0.1.30",
"@types/node": "^17.0.23",
"@types/ramda": "^0.28.7",
"desm": "^1.2.0",
"eslint-define-config": "^1.3.0",
"execa": "^6.1.0",
"lionconfig": "^1.6.25",
"lion-system": "^1.3.9",
"typescript": "^4.6.3",
"vitest": "^0.9.3"
},
"publishConfig": {
"directory": "dist"
}
}