-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "obsidian-functionplot",
"version": "1.2.1",
"description": "A plugin for displaying mathematical functions in obsidian.md.",
"repository": "https://github.com/leonhma/obsidian-functionplot",
"type": "module",
"author": "leonhma",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack",
"test": "jest",
"format": "yarn prettier --write .",
"lint": "yarn eslint ."
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"sass": "^1.54.4",
"sass-loader": "^13.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0",
"yaml": "^2.1.3"
},
"dependencies": {
"function-plot": "^1.23.1",
"obsidian": "0.16.3"
}
}