-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "@zushah/chalkboard",
"version": "2.1.0",
"description": "The Chalkboard library provides a plethora of mathematical functionalities for its user.",
"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",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"format": "prettier src",
"format:fix": "prettier --write src",
"docs": "typedoc --options typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zushah/Chalkboard.git"
},
"keywords": [
"algebra",
"calculus",
"complex",
"geometry",
"khan-academy",
"mathematics",
"number",
"plot",
"quaternion",
"statistics",
"tensor",
"trigonometry",
"typescript",
"matrix",
"vector"
],
"author": "Zushah",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zushah/Chalkboard/issues"
},
"homepage": "https://zushah.github.io/Chalkboard",
"publishConfig": {
"access": "public"
},
"save-prefix": "",
"devDependencies": {
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"eslint": "8.56.0",
"prettier": "3.1.1",
"typedoc": "0.25.6",
"typedoc-material-theme": "1.0.2",
"typescript": "5.3.3"
}
}