This repository has been archived by the owner on Oct 7, 2023. It is now read-only.
generated from productdevbookcom/nuxt-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.45 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
{
"name": "@huntersofbook/naive-ui-nuxt",
"type": "module",
"version": "1.2.0",
"packageManager": "pnpm@8.7.0",
"description": "Nuxt 3 Naive UI library",
"author": "Mehmet - productdevbook <hi@productdevbook.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/huntersofbook/naive-ui-nuxt",
"repository": {
"type": "git",
"url": "https://github.com/huntersofbook/naive-ui-nuxt.git"
},
"bugs": "https://github.com/huntersofbook/naive-ui-nuxt/issues",
"keywords": [
"nuxt 3",
"naive",
"naive ui",
"nuxt 3 module",
"plugin"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"scripts": {
"dev": "pnpm nuxi dev playground-nuxt",
"build": "pnpm dev:prepare && pnpm nuxt-module-build",
"dev:build": "nuxi build playground-nuxt",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground-nuxt",
"play": "pnpm --filter playground-nuxt dev",
"play:vue": "pnpm --filter playground-vue dev",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm build && vitest",
"test:watch": "pnpm dev:prepare && vitest --watch",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"vue": ">=3.3.4"
},
"dependencies": {
"@css-render/vue3-ssr": "^0.15.12",
"@nuxt/kit": "^3.7.0",
"defu": "^6.1.2",
"naive-ui": "^2.34.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.41.0",
"@nuxt/module-builder": "^0.5.0",
"@nuxt/schema": "^3.7.0",
"@nuxt/test-utils": "^3.7.0",
"@vitejs/plugin-vue": "^4.3.3",
"@vitest/coverage-v8": "^0.34.3",
"@vue-macros/volar": "^0.14.2",
"@vue/test-utils": "^2.4.1",
"bumpp": "^9.2.0",
"eslint": "^8.48.0",
"jsdom": "^22.1.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"unconfig": "^0.3.10",
"unplugin-vue-macros": "^2.4.14",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3",
"vitest": "^0.34.3",
"vue": "^3.3.4"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@huntersofbook/naive-ui-nuxt": "link:."
}
}