This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.89 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
{
"name": "@nextcloud/vue-richtext",
"version": "2.1.0-beta.6",
"description": "Vue component for rich content strings including markdown support.",
"keywords": [
"vuejs",
"components",
"markdown"
],
"homepage": "https://github.com/nextcloud/vue-richtext",
"bugs": "https://github.com/nextcloud/vue-richtext/issues",
"repository": "https://github.com/nextcloud/vue-richtext",
"license": "AGPL-3.0",
"author": "Julius Härtl <[email protected]>",
"module": "dist/index.js",
"main": "dist/index.js",
"library": "dist/vue-richtext.js",
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"build": "NODE_ENV=production vite build",
"watch": "NODE_ENV=development vite",
"docs": "NODE_ENV=production vite --config vite.config.docs.js build",
"docs:watch": "NODE_ENV=production vite --config vite.config.docs.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/axios": "^2.0.0",
"@nextcloud/event-bus": "^3.0.2",
"@nextcloud/initial-state": "^2.0.0",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^7.5.0",
"clone": "^2.1.2",
"vue": "^2.7.8",
"vue-material-design-icons": "^5.1.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.18.10",
"@nextcloud/browserslist-config": "^2.3.0",
"@vitejs/plugin-vue2": "^2.0.0",
"@vue/test-utils": "^1",
"c8": "^8.0.0",
"core-js": "^3.24.1",
"eslint": "^8.21.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-nextcloud": "^0.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.3.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-gfm-autolink-literal": "^1.0.2",
"mdast-util-to-string": "^3.1.0",
"micromark-extension-gfm-autolink-literal": "^1.0.3",
"prettier-eslint": "^15.0.1",
"rehype-react": "^7.1.1",
"remark-breaks": "3.0.3",
"remark-disable-tokenizers": "^1.1.0",
"remark-external-links": "^9.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"sass": "^1.54.4",
"stylelint": "^15.6.0",
"stylelint-config-recommended-scss": "^11.0.0",
"stylelint-scss": "^5.0.1",
"unified": "^10.1.2",
"unist-builder": "^3.0.0",
"unist-util-visit": "^5.0.0",
"vite": "^3.0.8",
"vite-plugin-markdown": "^2.1.0",
"vitest": "^0.33.0",
"vue-template-compiler": "^2.7.8"
},
"peerDependencies": {
"vue": "^2.7.8"
},
"engines": {
"node": "^20.0.0",
"npm": "^9.0.0"
}
}