-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
85 lines (85 loc) · 2.75 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"private": true,
"workspaces": [
"./packages/structured-clone",
"./packages/support-tables",
"./packages/unified-latex-util-pegjs",
"./packages/unified-latex-util-*",
"./packages/unified-latex-to-*",
"./packages/*"
],
"type": "module",
"scripts": {
"docs": "typedoc",
"build": "npm run build -ws",
"clean": "npm run clean -ws",
"package": "npm run package -ws",
"publish": "npm run publish -ws",
"test": "vitest ./packages",
"test:ci": "vitest ./packages --maxWorkers=1",
"test:packages-esm": "cd test/esm && npm install && npm run test",
"test:packages-cjs": "cd test/cjs && npm install && npm run test",
"test:packages-install": "cd test && npx vite-node make-packages.ts",
"prettier": "prettier \"**/*.ts\" \"**/*.json\" --ignore-path .gitignore --write",
"eslint": "eslint \"**/*.ts\" --ignore-pattern dist"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "es5"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/prettier": "^3.0.0",
"@types/shelljs": "^0.8.15",
"esbuild": "^0.24.0",
"esbuild-runner": "^2.2.2",
"lerna": "^8.1.9",
"lerna-update-wizard": "^1.1.2",
"mdast-builder": "^1.1.1",
"mdast-util-inject": "^1.1.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-pegjs": "^2.0.2",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"ts-morph": "^24.0.0",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-static-copy": "^2.0.0",
"vitest": "^2.1.4",
"wireit": "^0.14.9"
},
"dependencies": {
"@types/color": "^4.2.0",
"@types/cssesc": "^3.0.2",
"@types/text-table": "^0.2.5",
"camelcase": "^8.0.0",
"chalk": "^5.3.0",
"chokidar": "^4.0.1",
"color": "^4.2.3",
"cssesc": "^3.0.0",
"fault": "^2.0.1",
"hastscript": "^9.0.0",
"json5": "^2.2.3",
"minimist": "^1.2.8",
"peggy": "^4.1.1",
"rehype-format": "^5.0.1",
"text-table": "^0.2.0",
"unified": "^11.0.5",
"unified-engine": "^11.2.2",
"unified-lint-rule": "^3.0.0",
"unist-util-position": "^5.0.0",
"vfile": "^6.0.3",
"vfile-message": "^4.0.2",
"vfile-reporter-json": "^4.0.0",
"vfile-reporter-position": "^0.1.7",
"vfile-reporter-pretty": "^7.0.0"
},
"name": "unified-latex"
}