-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "@alexsun-top/nuxt-base-layer",
"type": "module",
"private": false,
"version": "0.3.0",
"main": "nuxt.config.ts",
"packageManager": "pnpm@9.10.0",
"author": "Alex Sun",
"license": "MIT",
"keywords": [
"nuxt",
"nuxt3",
"nuxt-layer"
],
"repository": {
"type": "git",
"url": "https://github.com/Sun-ZhenXing/nuxt-base-layer"
},
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE",
"README.md",
"package.json",
"nuxt.config.ts"
],
"bugs": "https://github.com/Sun-ZhenXing/nuxt-base-layer/issues",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"dependencies": {
"@nuxt/icon": "^1.5.1",
"@nuxt/image": "^1.8.0",
"@nuxtjs/color-mode": "^3.5.1",
"@nuxtjs/i18n": "^8.5.3",
"@nuxtjs/tailwindcss": "^6.12.1",
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
"@pinia/nuxt": "^0.5.4",
"@types/node": "^22.5.5",
"@vueuse/nuxt": "^11.1.0",
"dayjs-nuxt": "^2.1.11",
"pinia": "^2.2.2",
"tailwindcss": "^3.4.11"
},
"peerDependencies": {
"@vueuse/core": "^11.1.0",
"nuxt": "^3.13.2",
"nuxt-lodash": "^2.5.3",
"vue": "^3.5.6",
"vue-router": "^4.4.5"
}
}