forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.71 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
{
"name": "mathlive",
"version": "0.71.0",
"description": "Render and edit beautifully typeset math",
"license": "MIT",
"funding": {
"type": "individual",
"url": "paypal.me/arnogourdol"
},
"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/",
"prepare": "bash ./scripts/build.sh production && husky install",
"start": "bash ./scripts/start.sh",
"test": "bash ./scripts/test.sh",
"version": "bash ./scripts/version.sh",
"postversion": "bash ./scripts/github-release.sh"
},
"main": "./dist/mathlive.min.js",
"module": "./dist/mathlive.min.mjs",
"types": "./dist/public/mathlive.d.ts",
"files": [
"/dist"
],
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"jsxSingleQuote": false,
"proseWrap": "always",
"quoteProps": "consistent",
"semi": true,
"singleQuote": true,
"indentSize": 2,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"engines": {
"npm": ">=8.5.0",
"node": ">=16.14.2"
},
"browserslist": [
"> 1%",
"maintained node versions",
"not dead"
],
"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 <[email protected]>",
"Artur Fijał <[email protected]>",
"David Le Jolly <[email protected]>",
"Johannes Wilm <[email protected]>",
"Nick Gravelyn <[email protected]>",
"paosder <[email protected]>",
"Ben Eater (https://github.com/beneater)",
"Dominik Janković (https://github.com/djankovic)",
"Edin Adilagić (https://github.com/physedo)"
],
"devDependencies": {
"@arnog/esbuild-plugin-less": "^1.1.0",
"@cortex-js/prettier-config": "^1.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/css-font-loading-module": "0.0.7",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"autoprefixer": "10.4.4",
"check-node-version": "^4.2.1",
"cssnano": "^5.0.12",
"esbuild": "^0.14.2",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-no-unsanitized": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"estrella": "^1.4.1",
"http-server": "^14.0.0",
"husky": "^7.0.4",
"jest": "^27.4.3",
"jest-silent-reporter": "^0.5.0",
"less": "^4.1.2",
"open": "^8.4.0",
"postcss": "^8.4.4",
"postcss-cli": "^9.0.2",
"prettier": "^2.5.1",
"rollup": "^2.60.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@cortex-js/compute-engine": "^0.5.0"
},
"keywords": [
"math",
"editor",
"javascript",
"math-editing",
"latex",
"tex",
"mathjax",
"katex",
"mathquill"
]
}