-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 2 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
{
"name": "joplin-plugin-remote-note-pull",
"version": "1.3.1",
"license": "MIT",
"description": "Creates a note from any website (markdown preferred) and periodicity updates the local note with the original website.",
"keywords": [
"joplin-plugin"
],
"files": [
"publish"
],
"author": {
"name": "hegerdes",
"url": "https://henrikgerdes.me/"
},
"repository": "github:hegerdes/joplin-plugin-remote-note-pull",
"engines": {
"node": ">=14"
},
"scripts": {
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
"dist-legacy-ssl": "bash -c \"export NODE_OPTIONS=--openssl-legacy-provider && webpack --joplin-plugin-config buildMain && webpack --joplin-plugin-config buildExtraScripts && webpack --joplin-plugin-config createArchive\"",
"test-compile": "npm run build",
"lint": "eslint --ext .ts src ",
"update": "npm install -g generator-joplin && npx yo joplin --node-package-manager npm --update --force",
"build": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
"dev": "npm run dist && bash -c \"/c/Program\\ Files/Joplin/Joplin.exe --env dev\"",
"dev-legacy-ssl": "npm run dist-legacy-ssl && bash -c \"/c/Program\\ Files/Joplin/Joplin.exe --env dev\"",
"updateVersion": "webpack --env joplin-plugin-config=updateVersion"
},
"devDependencies": {
"@joplin/lib": "~3.2",
"@types/node": "^18.x",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"copy-webpack-plugin": "^12.0.0",
"eslint": "^8.56.0",
"fs-extra": "^11.2.0",
"generate-changelog": "^1.8.0",
"glob": "^11.0.0",
"on-build-webpack": "^0.1.0",
"tar": "^7.4.3",
"ts-loader": "^9.3.1",
"typescript": "^5.6.3",
"webpack": "^5.97.1",
"webpack-cli": "^4.10.0",
"yargs": "^17.7.x"
}
}