-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
executable file
·94 lines (94 loc) · 2.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
{
"version": "0.26.4",
"scripts": {
"doc": "bash ./scripts/doc.sh",
"build": "bash ./scripts/build.sh",
"clean": "bash ./scripts/clean.sh",
"coverage": "bash ./scripts/test.sh coverage",
"dist": "bash ./scripts/build.sh production; bash ./scripts/test.sh",
"lint": "eslint --fix src/",
"prepare": "bash ./scripts/build.sh production",
"start": "bash ./scripts/start.sh",
"snapshot": "bash ./scripts/test.sh snapshot",
"version": "bash ./scripts/version.sh",
"test": "bash ./scripts/test.sh"
},
"name": "@cortex-js/compute-engine",
"description": "Symbolic computing and numeric evaluations for JavaScript and Node.js",
"homepage": "https://cortexjs.io/compute-engine/",
"repository": {
"type": "git",
"url": "https://github.com/cortex-js/compute-engine.git"
},
"bugs": "https://github.com/cortex-js/compute-engine/issues/",
"publishConfig": {
"access": "public"
},
"keywords": [
"math",
"JSON",
"mathjs",
"mathematica",
"maple",
"algebra",
"symbolic computing",
"scientific computing",
"sympy"
],
"license": "MIT",
"files": [
"/dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/types/compute-engine.d.ts",
"require": "./dist/compute-engine.min.js",
"import": "./dist/compute-engine.min.esm.js",
"default": "./dist/compute-engine.min.js"
}
},
"main": "./dist/compute-engine.min.js",
"module": "./dist/compute-engine.min.esm.js",
"types": "./dist/types/compute-engine.d.ts",
"engines": {
"npm": ">=8.5.0",
"node": ">=16.14.2"
},
"devDependencies": {
"@cortex-js/prettier-config": "^1.2.0",
"@jest/console": "^29.7.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@typescript-eslint/typescript-estree": "^7.14.1",
"chalk": "^5.3.0",
"check-node-version": "^4.2.1",
"concat-md": "^0.5.1",
"esbuild": "^0.24.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"jest-silent-reporter": "^0.6.0",
"open": "^10.1.0",
"prettier": "^3.0.3",
"prettier-2": "npm:prettier@^2",
"serve-http": "^1.0.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.26.2",
"typedoc-plugin-markdown": "^4.0.0-next.53",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "^5.2.2",
"update-notifier": "^7.0.0"
},
"prettier": "@cortex-js/prettier-config",
"dependencies": {
"complex-esm": "^2.1.1-esm1",
"decimal.js": "^10.4.3"
}
}