-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
79 lines (79 loc) · 2.43 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
{
"name": "@bg-dev/nuxt-naiveui",
"version": "2.0.0-rc.3",
"description": "Unofficial Naive UI module for Nuxt",
"homepage": "https://nuxt-naiveui.bg.tn",
"author": "Becem Gharbi",
"keywords": [
"nuxt",
"naive-ui",
"module"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./utils": {
"types": "./dist/runtime/utils/index.d.ts",
"import": "./dist/runtime/utils/index.js"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:build:ssr": "nuxi build playground",
"dev:build:spa": "cross-env NUXT_SSR=false nuxi build playground",
"test": "playwright test",
"test:prod:ssr": "npm run dev:build:ssr && cross-env NODE_ENV=production npm run test",
"test:prod:spa": "npm run dev:build:spa && cross-env NODE_ENV=production npm run test",
"test:prod": "npm run test:prod:ssr && npm run test:prod:spa",
"lint": "eslint .",
"typecheck": "nuxi typecheck",
"prepack": "nuxt-module-build",
"release:pre": "npm run typecheck && npm run lint && npm run prepack",
"release": "npm run release:pre && npm run test:prod && changelogen --r 2.0.0-rc.3 --release && npm publish && git push --follow-tags",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@ant-design/colors": "^7.1.0",
"@iconify/vue": "^4.1.2",
"@nuxt/kit": "^3.13.2",
"defu": "^6.1.4",
"js-cookie": "^3.0.5",
"naive-ui": "^2.40.1"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.3.13",
"@nuxt/module-builder": "^0.8.1",
"@nuxt/schema": "^3.13.2",
"@nuxtjs/tailwindcss": "^6.12.1",
"@playwright/test": "^1.45.3",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.14.12",
"changelogen": "^0.5.5",
"cross-env": "^7.0.3",
"eslint": "^9.7.0",
"nuxt": "^3.14.159",
"typescript": "^5.5.4",
"vitepress": "^1.3.1"
},
"repository": {
"url": "git+https://github.com/becem-gharbi/nuxt-naiveui.git"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}