-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.97 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
{
"name": "jtex",
"version": "1.0.20",
"description": "Tool for rendering LaTeX documents from jinja-style templates",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": "./dist/jtex.cjs",
"scripts": {
"copy:version": "echo \"const version = '\"$npm_package_version\"';\nexport default version;\" > src/version.ts",
"clean": "rimraf dist _build",
"unlink": "npm uninstall -g jtex;",
"link": "npm run unlink; npm link;",
"dev": "npm run link && esbuild src/cli/index.ts --bundle --outfile=dist/jtex.cjs --platform=node --watch",
"lint": "npm run copy:version && eslint \"src/**/!(*.spec).ts\" -c ./.eslintrc.cjs",
"lint:format": "npm run copy:version && prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest watch",
"build:esm": "tsc",
"build:cli": "esbuild src/cli/index.ts --bundle --outfile=dist/jtex.cjs --platform=node",
"build": "npm-run-all -l clean copy:version -p build:esm build:cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jupyter-book/mystmd.git"
},
"keywords": [
"jtex",
"latex",
"jinja",
"templating"
],
"author": "Rowan Cockett <rowan@curvenote.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jupyter-book/mystmd/issues"
},
"homepage": "https://github.com/jupyter-book/mystmd/tree/main/packages/jtex",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"dependencies": {
"adm-zip": "^0.5.10",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"js-yaml": "^4.1.0",
"myst-cli-utils": "^2.0.11",
"myst-frontmatter": "^1.7.3",
"myst-templates": "^1.0.23",
"myst-common": "^1.7.3",
"node-fetch": "^3.3.1",
"nunjucks": "^3.2.4",
"pretty-hrtime": "^1.0.3",
"simple-validators": "^1.0.6"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/nunjucks": "^3.2.2",
"memfs": "^3.5.3"
}
}