-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "@quasar/quasar-app-extension-qmarkdown",
"version": "2.0.4",
"description": "Display inline markdown in your Quasar App",
"author": "Jeff Galbraith <[email protected]>",
"license": "MIT",
"type": "module",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"lint-fix": "eslint --ext .js,.vue src --fix",
"release": "npm publish --tag next"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hawkeye64"
},
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/quasarframework/quasar-ui-qmarkdown/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/quasarframework/quasar-ui-qmarkdown.git"
},
"homepage": "https://github.com/quasarframework/quasar-ui-qmarkdown",
"keywords": [
"quasar",
"app",
"app extension",
"extension",
"markdown"
],
"dependencies": {
"@quasar/quasar-ui-qmarkdown": "^2.0.4",
"front-matter": "^4.0.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"raw-loader": "^4.0.2",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0"
}
}