-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json5
More file actions
102 lines (95 loc) · 3.67 KB
/
package.json5
File metadata and controls
102 lines (95 loc) · 3.67 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
/* `package.json5` - JavaScript manifest
=====================================
Copyright (C) 2025 Bryan A. Jones.
This file is part of the CodeChat Editor.
The CodeChat Editor is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.
The CodeChat Editor is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a [copy](LICENSE.html) of the GNU General Public
License along with the CodeChat Editor. If not, see
[https://www.gnu.org/licenses/](https://www.gnu.org/licenses/).
Notes
-----
Use only block comments in this file. Multiple single-line comments get oddly
munged by `pnpm` per [this issue](https://github.com/pnpm/pnpm/issues/9838). */
{
author: 'Bryan A. Jones',
categories: [
'Other',
],
description: 'The CodeChat Editor Client, part of a web-based literate programming editor (the CodeChat Editor).',
homepage: 'https://codechat-editor.onrender.com/fw/fsb/opt/render/project/src/README.md',
keywords: [
'literate programming',
'CodeChat Editor',
'Visual Studio Code extension',
],
license: 'GPL-3.0-only',
name: 'codechat-editor-client',
repository: {
type: 'git',
url: 'https://github.com/bjones1/CodeChat_editor',
},
type: 'module',
version: '0.1.52',
dependencies: {
'@codemirror/commands': '^6.10.3',
'@codemirror/lang-cpp': '^6.0.3',
'@codemirror/lang-css': '^6.3.1',
'@codemirror/lang-go': '^6.0.1',
'@codemirror/lang-html': '^6.4.11',
'@codemirror/lang-java': '^6.0.2',
'@codemirror/lang-javascript': '^6.2.5',
'@codemirror/lang-json': '^6.0.2',
'@codemirror/lang-markdown': '^6.5.0',
'@codemirror/lang-php': '^6.0.2',
'@codemirror/lang-python': '^6.2.1',
'@codemirror/lang-rust': '^6.0.2',
'@codemirror/lang-sql': '^6.10.0',
'@codemirror/lang-xml': '^6.1.0',
'@codemirror/lang-yaml': '^6.1.3',
'@codemirror/state': '^6.6.0',
'@codemirror/view': '6.38.8',
'@hpcc-js/wasm-graphviz': '^1.21.2',
'@mathjax/mathjax-newcm-font': '^4.1.1',
codemirror: '^6.0.2',
mathjax: '^4.1.1',
mermaid: '^11.14.0',
'pdfjs-dist': '5.4.624',
tinymce: '^8.4.0',
'toastify-js': '^1.12.0',
},
devDependencies: {
'@eslint/js': '^10.0.1',
'@types/chai': '^5.2.3',
'@types/dom-navigation': '^1.0.7',
'@types/js-beautify': '^1.14.3',
'@types/mocha': '^10.0.10',
'@types/node': '^24.12.2',
'@types/toastify-js': '^1.12.4',
'@typescript-eslint/eslint-plugin': '^8.58.1',
'@typescript-eslint/parser': '^8.58.1',
chai: '^6.2.2',
esbuild: '^0.28.0',
eslint: '^10.2.0',
'eslint-config-prettier': '^10.1.8',
'eslint-plugin-import': '^2.32.0',
'eslint-plugin-prettier': '^5.5.5',
globals: '^17.4.0',
mocha: '^11.7.5',
'npm-check-updates': '^20.0.0',
prettier: '^3.8.1',
typescript: '^6.0.2',
'typescript-eslint': '^8.58.1',
},
scripts: {
test: 'echo "Error: no test specified" && exit 1',
build: 'cargo run --manifest-path=../builder/Cargo.toml client-build',
dist: 'cargo run --manifest-path=../builder/Cargo.toml client-build --dist',
},
}