-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "@l4dybird/nuxt3-vuetify-module",
"version": "0.0.3",
"description": "Nuxt3 Module Template",
"keywords": [
"nuxt",
"vue",
"vuetify"
],
"homepage": "https://github.com/l4dybird/@l4dybird/nuxt3-vuetify-module",
"bugs": {
"url": "https://github.com/l4dybird/@l4dybird/nuxt3-vuetify-module/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/l4dybird/@l4dybird/nuxt3-vuetify-module.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run dev:prepare && nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"test": "npm run dev:prepare && vitest",
"test:coverage": "vitest --coverage",
"test:types": "nuxi typecheck",
"test:watch": "vitest -w"
},
"dependencies": {
"@mdi/font": "^7.0.96",
"@nuxt/kit": "^3.0.0-rc.12",
"sass": "^1.55.0",
"vuetify": "^3.0.0-beta.14"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/test-utils": "^3.0.0-rc.12",
"@vitest/coverage-c8": "^0.24.3",
"nuxt": "^3.0.0-rc.12",
"playwright": "^1.27.0",
"typescript": "^4.8.4",
"vitest": "^0.24.3",
"vue-tsc": "^1.0.7"
},
"volta": {
"node": "16.17.1",
"npm": "8.15.0"
},
"publishConfig": {
"access": "public"
}
}