-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.15 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.15 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@sfxcode/nuxt-ui-formkit",
"version": "0.8.7",
"description": "FormKit integration for Nuxt UI - Seamlessly connect FormKit form handling with Nuxt UI components",
"author": {
"name": "Tom",
"email": "tom@sfxcode.com"
},
"contributors": [
{
"name": "sfxcode",
"email": "tom@sfxcode.com"
}
],
"license": "MIT",
"homepage": "https://github.com/sfxcode/nuxt-ui-formkit",
"repository": {
"type": "git",
"url": "git+https://github.com/sfxcode/nuxt-ui-formkit.git"
},
"keywords": [
"nuxt",
"nuxt-module",
"nuxt3",
"nuxt4",
"formkit",
"nuxt-ui",
"vue",
"vue3",
"forms",
"form-validation",
"ui-components",
"typescript",
"design-system",
"form-builder"
],
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./definitions": {
"types": "./dist/runtime/formkit/definitions/index.d.ts",
"import": "./dist/runtime/formkit/definitions/index.mjs"
},
"./plugins": {
"types": "./dist/runtime/formkit/plugins/index.d.ts",
"import": "./dist/runtime/formkit/plugins/index.mjs"
},
"./formkit": {
"types": "./dist/runtime/formkit/index.d.ts",
"import": "./dist/runtime/formkit/index.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"definitions": [
"./dist/runtime/formkit/definitions/index.d.ts"
],
"plugins": [
"./dist/runtime/formkit/plugins/index.d.ts"
],
"formkit": [
"./dist/runtime/formkit/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --patch --release && npm publish --access=public && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@formkit/addons": "^2.0.0",
"@formkit/nuxt": "^2.0.0",
"@nuxt/kit": "^4.4.2",
"@nuxt/ui": "^4.6.1"
},
"devDependencies": {
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/lucide": "^1.2.101",
"@iconify-json/simple-icons": "^1.2.76",
"@nuxt/devtools": "4.0.0-alpha.3",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.2",
"@nuxt/test-utils": "^4.0.0",
"@types/node": "latest",
"changelogen": "^0.6.2",
"eslint": "^10.2.0",
"mkdist": "^2.4.1",
"nuxt": "^4.4.2",
"sass-embedded": "^1.99.0",
"typescript": "~6.0.2",
"unbuild": "^3.6.1",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.6"
}
}