joplin-plugin-my-calendar 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/manifest.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "manifest_version": 1,
3
+ "id": "com.volodymyroliinyk.joplin.plugin.my-calendar",
4
+ "app_min_version": "3.3",
5
+ "version": "1.2.3",
6
+ "name": "My Calendar",
7
+ "description": "Calendar view from notes with event syntax",
8
+ "author": "Volodymyr Oliinyk",
9
+ "homepage_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
10
+ "repository_url": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
11
+ "keywords": [
12
+ "joplin",
13
+ "plugin",
14
+ "calendar",
15
+ "event",
16
+ "my calendar",
17
+ "ics",
18
+ "import",
19
+ "ical"
20
+ ],
21
+ "platforms": [
22
+ "desktop",
23
+ "mobile"
24
+ ],
25
+ "permissions": [
26
+ "notes"
27
+ ]
28
+ }
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "joplin-plugin-my-calendar",
3
+ "version": "1.2.3",
4
+ "description": "Calendar plugin for Joplin",
5
+ "author": "Volodymyr Oliinyk",
6
+ "license": "MIT",
7
+ "homepage": "https://github.com/volodymyroliinyk/joplin-plugin-my-calendar",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/volodymyroliinyk/joplin-plugin-my-calendar.git"
11
+ },
12
+ "main": "dist/index.js",
13
+ "scripts": {
14
+ "clean": "rm -rf dist node_modules package-lock.json",
15
+ "build": "webpack",
16
+ "pack": "npm run build && cd dist && tar --format=ustar -cf ../publish/com.volodymyroliinyk.joplin.plugin.my-calendar.jpl manifest.json index.js ui",
17
+ "dist": "npm run pack",
18
+ "test": "(TZ=UTC jest && echo \"$(date +%s)|PASS\" > .test-status) || (echo \"$(date +%s)|FAIL\" > .test-status && exit 1)",
19
+ "test:watch": "jest --watch",
20
+ "lint": "eslint .",
21
+ "prepare": "husky",
22
+ "release": "standard-version",
23
+ "changelog:preview": "bash scripts/preview-changelog.sh"
24
+ },
25
+ "keywords": [
26
+ "joplin-plugin"
27
+ ],
28
+ "devDependencies": {
29
+ "@eslint/js": "^9.39.2",
30
+ "@types/jest": "^29.x",
31
+ "copy-webpack-plugin": "^12.0.0",
32
+ "eslint": "^9.39.2",
33
+ "eslint-plugin-jest": "^29.12.1",
34
+ "globals": "^17.1.0",
35
+ "husky": "^9.0.11",
36
+ "jest": "^29.x",
37
+ "jest-environment-jsdom": "^30.2.0",
38
+ "standard-version": "^9.5.0",
39
+ "ts-jest": "^29.x",
40
+ "ts-loader": "^9.5.1",
41
+ "typescript": "^5.9.3",
42
+ "typescript-eslint": "^8.53.1",
43
+ "webpack": "^5.98.0",
44
+ "webpack-cli": "^5.1.4"
45
+ },
46
+ "files": [
47
+ "dist/index.js",
48
+ "dist/ui",
49
+ "dist/manifest.json",
50
+ "manifest.json",
51
+ "CHANGELOG.md"
52
+ ]
53
+ }