This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 1.72 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
{
"name": "@sfxcode/nuxt-primevue",
"version": "1.4.2",
"license": "MIT",
"type": "module",
"author": {
"name": "Tom Lamers",
"email": "[email protected]"
},
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"unbuild": {
"rollup": {
"commonjs": {
"exclude": "node_modules/**"
}
}
},
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:start": "node playground/.output/server/index.mjs",
"lint": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"build": {
"failOnWarn": false
},
"dependencies": {
"@formkit/nuxt": "1.2.2",
"@nuxt/kit": "^3.7.4",
"@sfxcode/formkit-primevue": "^1.4.2",
"primeicons": "^6.0.1",
"primevue": "^3.36.0"
},
"devDependencies": {
"@anu-vue/preset-theme-default": "^0.15.2",
"@iconify-json/mdi": "^1.1.54",
"@nuxt/module-builder": "^0.5.2",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@pinia/nuxt": "^0.5.1",
"@types/node": "^20.8.6",
"@unocss/nuxt": "^0.56.5",
"@vueuse/nuxt": "^10.5.0",
"anu-vue": "^0.15.2",
"defu": "^6.1.2",
"eslint": "^8.51.0",
"markdown-it": "^13.0.2",
"nuxt": "^3.7.4",
"sass": "^1.69.4",
"vitepress": "1.0.0-rc.22"
},
"keywords": [
"nuxt",
"nuxt-module",
"vue3",
"nuxt3",
"nuxt-primevue",
"formkit",
"formkit-primevue"
]
}