-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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": "obsidian-functionplot",
"version": "1.2.1",
"description": "A plugin for displaying mathematical functions in obsidian.md.",
"repository": "https://github.com/leonhma/obsidian-functionplot",
"author": "leonhma",
"license": "MIT",
"private": true,
"scripts": {
"build:prod": "pnpm exec webpack --env production",
"build": "pnpm exec webpack",
"watch": "pnpm exec webpack --watch",
"lint:prod": "pnpm exec -c .eslintrc.prod.json .",
"test": "pnpm exec jest",
"format": "pnpm exec eslint --cache --fix -c .eslintrc.json . && pnpm exec prettier --write .",
"lint": "pnpm exec eslint -c .eslintrc.json .",
"postinstall": "pnpm exec husky install"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@tsconfig/svelte": "^3.0.0",
"@types/d3": "^7.4.0",
"@types/jest": "^29.2.3",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.3",
"eslint": "^8.34.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"image-minimizer-webpack-plugin": "^3.8.3",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.4.2",
"lint-staged": "^13.1.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.9.0",
"sass": "^1.58.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"svelte": "^3.55.1",
"svelte-loader": "^3.1.4",
"svelte-material-icons": "^2.0.4",
"svelte-preprocess": "^4.10.7",
"svgo": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0",
"yaml": "^2.1.3"
},
"dependencies": {
"d3": "^7.8.5",
"function-plot": "^1.25.1",
"html-to-image": "^1.11.3",
"obsidian": "0.16.3"
},
"lint-staged": {
"*.{js,ts,css,md,svelte}": "pnpm run format"
}
}