-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "nuxt-gravatar",
"version": "1.1.0",
"description": "Gravatar Component for NuxtJs",
"repository": "https://github.com/mohsin/nuxt-gravatar",
"author": "Saifur Rahman Mohsin",
"license": "GPL-2.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"prepack": "pnpm build",
"dev": "nuxi dev playground",
"test": "vitest",
"test:unit": "vitest run test/unit",
"test:e2e": "vitest run test/e2e",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@vue/reactivity": "^3.2.45"
},
"devDependencies": {
"@nuxt/kit": "^3.0.0",
"@nuxt/schema": "^3.0.0",
"@nuxt/test-utils": "3.0.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitest/coverage-c8": "^0.25.1",
"@vue/test-utils": "^2.2.2",
"jsdom": "^20.0.2",
"playwright": "^1.27.1",
"unbuild": "^0.9.4",
"vite": "^3.2.3",
"vitest": "^0.25.1",
"vue": "^3.2.45"
},
"publishConfig": {
"access": "public"
}
}