-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
{
"name": "vue3-disqus",
"version": "1.0.7",
"description": "Vue component to integrate Disqus comments in your application, with support for SPA",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/vue3-disqus.cjs",
"module": "./dist/vue3-disqus.js",
"exports": {
".": {
"import": "./dist/vue3-disqus.js",
"require": "./dist/vue3-disqus.cjs",
"browser": "./dist/vue3-disqus.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build -c vite-build.config.ts",
"dev": "cd demo && vite",
"lint": "eslint .",
"demo": "vite",
"demo:build": "vite build",
"demo:deploy": "gh-pages -d demo/dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modbender/vue3-disqus.git"
},
"keywords": [
"disqus",
"vue",
"vuejs",
"blog",
"vuepress",
"comments"
],
"author": "Yashas HR <rameshmamathayashas@gmail.com> (https://github.com/modbender/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/modbender/vue3-disqus/issues"
},
"homepage": "https://github.com/modbender/vue3-disqus#readme",
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^20.4.1",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-standard": "^8.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^9.17.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.1.0",
"globals": "^15.14.0",
"npm-run-all": "^4.1.5",
"standard-version": "^9.5.0",
"typescript": "^5.1.6",
"typescript-eslint": "^8.18.2",
"vite": "^4.4.2",
"vite-plugin-dts": "^3.2.0",
"vue-tsc": "^1.8.4"
}
}