-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.32 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
64
65
66
{
"name": "joplin-plugin-editor-themes",
"description": "Joplin plugin that applies editor themes",
"version": "1.0.2",
"scripts": {
"coverage": "vitest --coverage",
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
"lint": "echo 'Running eslint' && npm run eslint && echo 'Running vale' && npm run vale",
"lint:ci": "(trap 'RC=1' ERR; echo 'Running eslint'; npm run eslint; exit $RC)",
"eslint": "eslint src test test-support",
"eslint:fix": "eslint --fix src test test-support",
"prepare": "npm run dist",
"test": "vitest",
"test:integ": "vitest --mode integration-test",
"test:unit": "vitest --mode unit-test",
"ui": "vitest --ui --coverage",
"vale": "vale src test test-support --glob '**/*.{css,md,ts}'",
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update",
"updateVersion": "webpack --env joplin-plugin-config=updateVersion"
},
"license": "MIT",
"keywords": [
"joplin-plugin"
],
"files": [
"publish"
],
"devDependencies": {
"@babel/runtime": "^7.26.0",
"@codemirror/lang-markdown": "6.3.0",
"@codemirror/language": "6.10.3",
"@codemirror/state": "6.4.1",
"@codemirror/view": "6.35.0",
"@joplin/lib": "~2.9",
"@mobily/ts-belt": "^3.13.1",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@uiw/codemirror-themes-all": "^4.23.6",
"@vitest/coverage-v8": "2.1.4",
"@vitest/ui": "^2.1.4",
"babel-runtime": "^6.26.0",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-webpack-plugin": "^4.2.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"happy-dom": "^15.11.0",
"jest-extended": "^4.0.2",
"strong-mock": "^9.0.0",
"tar": "^6.1.11",
"ts-loader": "9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"type-fest": "4.26.1",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.1.0",
"vitest": "2.1.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}