forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
172 lines (172 loc) · 5.69 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "mathlive",
"version": "0.95.0",
"description": "A web component for math input",
"license": "MIT",
"funding": {
"type": "individual",
"url": "https://paypal.me/arnogourdol"
},
"files": [
"/dist"
],
"types": "./dist/types/mathlive.d.ts",
"module": "./dist/mathlive.min.mjs",
"main": "./dist/mathlive.min.js",
"exports": {
".": {
"browser": {
"production": {
"types": "./dist/types/mathlive.d.ts",
"import": "./dist/mathlive.min.mjs",
"require": "./dist/mathlive.min.js"
},
"development": {
"types": "./dist/types/mathlive.d.ts",
"import": "./dist/mathlive.mjs",
"require": "./dist/mathlive.js"
}
},
"node": {
"types": "./dist/types/mathlive-ssr.d.ts",
"import": "./dist/mathlive-ssr.min.mjs"
},
"default": {
"types": "./dist/types/mathlive.d.ts",
"import": "./dist/mathlive.min.mjs",
"require": "./dist/mathlive.min.js"
}
},
"./ssr": "./dist/mathlive-ssr.min.mjs",
"./fonts.css": "./dist/mathlive-fonts.css",
"./static.css": "./dist/mathlive-static.css",
"./fonts/*": "./dist/fonts/*",
"./sounds/*": "./dist/sounds/*",
"./fonts/": "./dist/fonts/*",
"./sounds/": "./dist/sounds/*"
},
"repository": {
"type": "git",
"url": "https://github.com/arnog/mathlive.git"
},
"bugs": "https://github.com/arnog/mathlive/issues/",
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "bash ./scripts/clean.sh",
"dist": "bash ./scripts/build.sh production; bash ./scripts/test.sh",
"lint": "eslint --fix src/; prettier -w src/",
"prepare": "bash ./scripts/build.sh production",
"start": "bash ./scripts/start.sh",
"test": "bash ./scripts/test.sh",
"version": "bash ./scripts/version.sh",
"postversion": "bash ./scripts/github-release.sh"
},
"author": "Arno Gourdol <[email protected]>",
"contributors": [
"Louis Larpin (lilfaf.github.io)",
"Neil Soiffer (https://github.com/NSoiffer)",
"Jason Boxman (https://github.com/jboxman)",
"Synergy Codes (https://www.synergycodes.com/)",
"Rafał Piekarski (https://github.com/rpdiss)",
"Kajetan Champlewski <[email protected]>",
"Fabian Grewing <[email protected]>",
"Paul Masson <[email protected]>",
"Soroush Javadi <[email protected]>",
"Thomas Schell <[email protected]>",
"leerobert <[email protected]>",
"spirobel (https://github.com/spirobel) <[email protected]>",
"Artur Fijał <[email protected]>",
"David Le Jolly <[email protected]>",
"Johannes Wilm <[email protected]>",
"Nick Gravelyn <[email protected]>",
"paosder <[email protected]>",
"Orkhan Alikhanov (https://github.com/OrkhanAlikhanov)",
"Ben Eater (https://github.com/beneater)",
"Dominik Janković (https://github.com/djankovic)",
"Edin Adilagić (https://github.com/physedo)",
"Gunnar Mein (https://github.com/gunnarmein-ts)",
"Zeyad Ahmad Aql (https://github.com/zeyad-ahmad-aql)",
"Sergiy Bondaryev (https://github.com/sbondaryev)",
"Damian Jóźwiak (https://github.com/kvas-damian)",
"https://github.com/EaswarRaju",
"https://github.com/wenyufei2018",
"https://github.com/xing38",
"https://github.com/Neverland",
"https://github.com/AceGentile",
"https://github.com/eds007",
"https://github.com/harrisnl",
"https://github.com/rkeulemans",
"https://github.com/classicneupane",
"Zoran Popovic (https://github.com/zoranpopovic)",
"Magzhan (https://github.com/Kydyralin)",
"Christian (https://github.com/ChrBrkmn)",
"Riccardo Magliocchetti (https://github.com/xrmx)",
"Alexey Yakovlev (https://github.com/yakovlev-alexey)",
"David Le Jolly (https://github.com/Zahara-Nour)",
"Alexey (https://github.com/alexprey)",
"Pontus Granström (https://github.com/pontusgranstrom)",
"Ben Goldsmith (https://github.com/bengolds)",
"Max (https://github.com/manstie)",
"https://github.com/stefnotch",
"Caleb Flores (https://github.com/caleb-flores)",
"Danny Greg (https://github.com/dannygreg)",
"Luis Mesa (https://github.com/LuisMesa)",
"Pablo Androetto (https://github.com/androettop)",
"James Mullen (https://github.com/wildyellowfin)",
"Michael Greminger (https://github.com/mgreminger)",
"Oscar Hermoso (https://github.com/oscarhermoso)"
],
"browserslist": [
"> 1%",
"maintained node versions",
"not dead"
],
"engines": {
"npm": ">=8.5.0",
"node": ">=16.14.2"
},
"prettier": "@cortex-js/prettier-config",
"dependencies": {
"@cortex-js/compute-engine": "0.12.3"
},
"devDependencies": {
"@arnog/esbuild-plugin-less": "^1.1.0",
"@cortex-js/prettier-config": "^1.1.1",
"@playwright/test": "^1.32.3",
"@types/css-font-loading-module": "0.0.8",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.49.0",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"esbuild": "^0.18.11",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.1",
"jest-silent-reporter": "^0.5.0",
"less": "^4.1.3",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^5.0.3"
},
"keywords": [
"math",
"editor",
"javascript",
"math-editing",
"cortex",
"compute engine",
"virtual keyboard",
"math keyboard",
"latex",
"tex",
"mathjax",
"katex",
"mathquill"
]
}