-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.5 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.5 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
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
95
96
{
"name": "joplin-plugin-katex-input-helper",
"version": "3.0.1",
"scripts": {
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && npm run build-assets-prod && webpack --env joplin-plugin-config=createArchive",
"dist-with-doc": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && npm run build-assets-prod && npm run build-docs && webpack --env joplin-plugin-config=createArchive",
"prepare": "npm run dist",
"updateVersion": "webpack --env joplin-plugin-config=updateVersion",
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force",
"build-docs": "typedoc --options typedoc.json --tsconfig src/assets/tsconfig.json && npm exec --package=@atao60/fse-cli fse copy ./img ./docs/img",
"test": "vitest --root './tests' --run --reporter verbose --no-cache",
"jtest": "jest",
"build-assets": "webpack --config webpack.assets.config.js",
"build-assets-prod": "webpack --config webpack.assets.config.js --env kihmode=production",
"serve": "webpack serve --config webpack.assets.config.js",
"serve-prod": "webpack serve --config webpack.assets.config.js --env kihmode=production",
"stop-serve": "npx kill-port 9000",
"deploy": "webpack --config webpack.assets.config.js --env ghpages --env kihmode=production && gh-pages -d dist/assets"
},
"license": "MIT",
"keywords": [
"joplin-plugin"
],
"files": [
"publish"
],
"devDependencies": {
"@atao60/fse-cli": "^0.1.9",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.10.3",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/view": "^6.40.0",
"@joplin/lib": "^2.6.3",
"@rollup/plugin-inject": "^5.0.5",
"@types/hammerjs": "^2.0.46",
"@types/jquery": "^3.5.32",
"@types/jsdom": "^21.1.7",
"@types/katex": "^0.16.7",
"@types/node": "^18.7.13",
"@types/platform": "^1.3.6",
"@uiw/codemirror-themes-all": "^4.25.9",
"buffer": "^6.0.3",
"chalk": "^4.1.0",
"codemirror": "^6.0.2",
"codemirror-lang-latex": "^0.2.0",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"file-loader": "^6.2.0",
"fs-extra": "^10.1.0",
"generate-file-webpack-plugin": "^1.0.1",
"gh-pages": "6.1.0",
"glob": "^8.0.3",
"hammerjs": "^2.0.8",
"handlebars": "^4.7.8",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"inversify": "^7.5.1",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"jquery-contextmenu": "^2.9.2",
"json-loader": "^0.5.7",
"katex": "^0.16.22",
"mini-css-extract-plugin": "^2.9.2",
"mobile-detect": "^1.4.5",
"node-device-detector": "^2.2.2",
"path": "^0.12.7",
"platform": "^1.3.6",
"raw-loader": "^4.0.2",
"reflect-metadata": "^0.2.2",
"sass": "^1.93.2",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"tar": "^6.1.11",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.3.1",
"typedoc": "^0.26.10",
"typedoc-umlclass": "^0.10.0",
"typescript": "^4.8.2",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.1"
},
"eslintConfig": {
"plugins": [
"de.habelt-jena.KatexInputHelper"
],
"env": {
"browser": true,
"node": true,
"de.habelt-jena.KatexInputHelper/custom": true
}
}
}