-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.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
{
"name": "kmap-solvee",
"version": "0.9.17",
"description": "Interactively solve mathematical equations",
"license": "MIT",
"author": "Holger Engels",
"repository": {
"type": "git",
"url": "https://github.com/holgerengels/kmap-solvee.git"
},
"homepage": "https://kmap.eu",
"keywords": [
"kmap",
"school",
"math",
"equation",
"term",
"strategy",
"trainer",
"solve"
],
"type": "module",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"exports": {
".": "./dist/src/index.js"
},
"scripts": {
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"build": "tsc -w",
"prepublish": "tsc",
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"storybook": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds -c .storybook/server.mjs\"",
"storybook:build": "tsc && build-storybook"
},
"engines": {
"npm": ">=8.5.0",
"node": ">=16.14.2"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@web/dev-server": "~0.4.6",
"@web/dev-server-storybook": "^2.0.3",
"concurrently": "^8.2.2",
"esbuild": "^0.21.5",
"prettier": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@cortex-js/compute-engine": "^0.25.1",
"asciimath2tex": "^1.4.0",
"katex": "^0.16.11",
"lit": "^2.8.0",
"jsxgraph": "^1.9.2",
"kmap-jsxgraph": "^0.9.23"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
}
}