forked from sfxcode/nuxt-primevue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.75 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
{
"name": "@sfxcode/nuxt-primevue",
"version": "1.2.6",
"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"
],
"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",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0 -n changelog/config.ts"
},
"build": {
"failOnWarn": false
},
"dependencies": {
"@formkit/nuxt": "0.17.4",
"@nuxt/kit": "^3.6.2",
"@sfxcode/formkit-primevue": "^1.2.0"
},
"devDependencies": {
"@anu-vue/preset-theme-default": "^0.15.2",
"@iconify-json/mdi": "^1.1.53",
"@nuxt/module-builder": "^0.4.0",
"@nuxtjs/eslint-config-typescript": "12.0.0",
"@pinia/nuxt": "^0.4.11",
"@types/node": "^20.4.1",
"@unocss/nuxt": "^0.53.5",
"@vueuse/nuxt": "^10.2.1",
"anu-vue": "^0.15.2",
"conventional-changelog-cli": "^3.0.0",
"defu": "^6.1.2",
"eslint": "^8.44.0",
"flexsearch": "^0.7.31",
"markdown-it": "^13.0.1",
"nuxt": "^3.6.2",
"sass": "^1.63.6",
"vitepress": "1.0.0-beta.5"
},
"keywords": [
"nuxt",
"nuxt-module",
"vue3",
"nuxt3",
"nuxt-primevue",
"formkit",
"formkit-primevue"
]
}