-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.29 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "pretext-tools-monorepo",
"displayName": "PreTeXt-tools-monorepo",
"description": "Monorepo for PreTeXt tools",
"version": "0.0.1",
"license": "See license in LICENSE",
"publisher": "oscarlevin",
"repository": "https://github.com/oscarlevin/pretext-tools",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "nx build vscode-extension",
"build:dev": "nx build:dev vscode-extension",
"watch": "nx build:watch vscode-extension",
"refresh:schemas": "node ./scripts/getSchemas.js && node ./packages/completions/scripts/generate-default-schema.mjs",
"lint": "nx run-many -t eslint:lint",
"test": "nx run-many -t test"
},
"devDependencies": {
"@nx/eslint": "^22.3.3",
"@nx/js": "^22.3.3",
"@nx/react": "^22.3.3",
"@nx/vite": "22.3.3",
"@nx/vitest": "22.3.3",
"@nx/web": "22.3.3",
"@swc-node/register": "~1.11.1",
"@swc/core": "~1.15.7",
"@swc/helpers": "~0.5.17",
"@types/mocha": "^10.0.10",
"@types/node": "25.x",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/vscode": "^1.107.0",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"ajv": "^8.17.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"jiti": "2.6.1",
"jsdom": "^27.3.0",
"jsonc-eslint-parser": "^2.4.2",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"nx": "22.3.3",
"nx-release": "^3.4.0",
"ovsx": "^0.10.7",
"replace-json-property": "^1.9.0",
"sass-embedded": "^1.97.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.16"
},
"dependencies": {
"@lezer/xml": "^1.0.6",
"@tiptap/extension-hard-break": "^3.14.0",
"@tiptap/extension-text": "^3.14.0",
"@unified-latex/unified-latex": "^1.8.3",
"@unified-latex/unified-latex-to-hast": "^1.8.3",
"@unified-latex/unified-latex-to-pretext": "^1.8.3",
"@unified-latex/unified-latex-util-arguments": "^1.8.3",
"@unified-latex/unified-latex-util-html-like": "^1.8.3",
"@unified-latex/unified-latex-util-parse": "^1.8.3",
"deepmerge": "^4.3.1",
"esbuild-node-externals": "^1.20.1",
"frankenmarkup": "github:davidfarmer/FrankenMarkUp",
"fs.promises.exists": "^1.1.4",
"glob": "^13.0.0",
"md2ptx": "github:skiadas/md2ptx",
"mdast-util-from-markdown": "^2.0.2",
"prettier": "~3.7.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-redux": "^9.2.0",
"rehype-stringify": "^10.0.1",
"saxes": "^6.0.0",
"time-stamp": "^2.2.0",
"unified": "^11.0.5",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.0.0",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.1.0",
"xast-util-from-xml": "^4.0.0",
"xast-util-to-string": "^3.0.0",
"xast-util-to-xml": "^4.0.0",
"xml2js": "^0.6.2"
},
"prettier": {
"tabWidth": 2
}
}