generated from makaanneo/joplin-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.02 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
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
97
98
99
100
101
{
"name": "joplin-plugin-apollo",
"version": "1.2.2",
"scripts": {
"dist": "yarn run plugin-build && yarn run plugin-extrascripts && yarn run plugin-pack",
"plugin-build": "webpack --config-name pluginConfig",
"plugin-extrascripts": "webpack --config-name attachContentScripts",
"plugin-pack": "webpack --config-name createArchiveConfig",
"prepare": "yarn run test && yarn run dist",
"update": "yarn install -g generator-joplin && yo joplin --update",
"prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
"lint": "eslint . --ext .ts",
"test": "jest",
"bump-plugin-version": "ts-node bump-plugin-version.ts"
},
"license": "MIT",
"keywords": [
"joplin-plugin"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": {
"name": "https://github.com/makaanneo",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/makaanneo/joplin-plugin-apollo/issues"
},
"homepage": "https://github.com/makaanneo/joplin-plugin-apollo",
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@types/codemirror": "^5.60.5",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"canvas": "^2.11.0",
"chalk": "^4.1.0",
"chokidar": "^3.5.2",
"codemirror": "^5.65.5",
"constants-browserify": "^1.0.0",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.11",
"fs-extra": "^11.1.0",
"glob": "^8.0.3",
"https-browserify": "^1.0.0",
"jest": "^29.3.1",
"linq-to-typescript": "^10.0.0",
"lint-staged": "^13.1.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"pdfjs-dist": "^3.1.81",
"prettier": "^2.8.1",
"pretty-format": "^29.3.1",
"semantic-release": "^19.0.5",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tar": "^6.1.13",
"ts-debounce": "^4.0.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"url": "^0.11.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"worker-loader": "^3.0.8",
"yaml": "^2.2.1",
"yargs": "^17.6.2"
},
"overrides": {
"marked": "^4.0.10",
"semantic-release": "^19.0.5",
"pretty-format": "^29.3.1",
"simple-get": "^4.0.1",
"string-width": "^4.2.3",
"Minimist": "^1.2.6",
"ansi-regex": ">=3.0.1",
"jsprim": "^1.4.2"
},
"dependencies": {
"inversify": "^6.0.1",
"pdfjs-dist": "^3.1.81",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1"
}
}