This repository has been archived by the owner on Nov 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
81 lines (81 loc) · 2.51 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
{
"name": "@invictus.codes/nuxt-vuetify",
"description": "Add Vuetify 3 to your Nuxt application in seconds.",
"private": false,
"version": "0.3.0",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/invictus-codes/nuxt-vuetify.git"
},
"bugs": {
"url": "https://github.com/invictus-codes/nuxt-vuetify/issues"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.0.0",
"npm": ">=8.0.0",
"yarn": ">=1.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"ignore": [
"*",
"!package.json",
"!pnpm-lock.yaml",
"!dist/"
]
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:generate": "nuxi generate playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "pnpm run release:patch",
"release:patch": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release --patch && pnpm publish && git push --follow-tags",
"release:minor": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release --minor && pnpm publish && git push --follow-tags",
"release:major": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release --major && pnpm publish && git push --follow-tags",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx,.vue --ignore-path .gitignore --cache",
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx,.vue --ignore-path .gitignore --cache --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"outdated": "pnpm outdated",
"update": "pnpm up --latest"
},
"dependencies": {
"@nuxt/kit": "^3.6.2",
"defu": "^6.1.2",
"vite-plugin-vuetify": "^1.0.2",
"vuetify": "^3.3.7"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.7",
"@nuxt/module-builder": "0.4.0",
"@nuxt/schema": "^3.6.2",
"@nuxt/test-utils": "^3.6.2",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"changelogen": "^0.5.4",
"eslint": "^8.44.0",
"eslint-plugin-nuxt": "^4.0.0",
"nuxt": "^3.6.2",
"sass": "^1.63.6",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}