-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.47 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
{
"name": "@zushah/chalkboard",
"version": "3.0.3",
"description": "Hundreds of functions for the manifestation and manipulation of mathematical structures and systems.",
"main": "./dist/Chalkboard.js",
"types": "./dist/Chalkboard.d.ts",
"files": [
"./dist/",
"./CHANGELOG.md",
"./LICENSE.md",
"./package.json",
"./README.md"
],
"scripts": {
"build": "tsc --project ./tsconfig.json && terser ./dist/Chalkboard.js --compress --mangle --output ./dist/Chalkboard.min.js",
"test": "node --test ./test/*.test.js",
"dev": "npm run build && npm run test",
"restore": "git restore dist",
"docs": "typedoc --options ./typedoc.json --favicon ./assets/favicon.png"
},
"devDependencies": {
"@types/node": "^26.1.0",
"terser": "^5.48.0",
"typedoc": "^0.28.20",
"typedoc-material-theme": "^1.4.1",
"typescript": "^6.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zushah/Chalkboard.git"
},
"keywords": [
"algebra",
"boolean",
"calculus",
"complex",
"diffeq",
"geometry",
"mathematics",
"matrix",
"number",
"plot",
"quaternion",
"statistics",
"tensor",
"trigonometry",
"typescript",
"vector"
],
"author": "Zushah",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Zushah/Chalkboard/issues"
},
"homepage": "https://zushah.github.io/Chalkboard",
"publishConfig": {
"access": "public"
},
"save-prefix": ""
}