-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.59 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
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@sfxcode/nuxt-ui-formkit",
"version": "1.0.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"
],
"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",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@formkit/addons": "^2.0.0",
"@formkit/nuxt": "^2.0.0",
"@nuxt/kit": "4.4.6",
"@nuxt/ui": "^4.8.2",
"@vue/compiler-dom": "^3.5.35"
},
"devDependencies": {
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/lucide": "^1.2.111",
"@iconify-json/simple-icons": "^1.2.85",
"@nuxt/devtools": "4.0.0-alpha.7",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "4.4.6",
"@nuxt/test-utils": "^4.0.3",
"@types/node": "latest",
"@vitejs/plugin-vue": "^6.0.7",
"changelogen": "^0.6.2",
"eslint": "^10.4.1",
"jsdom": "^29.1.1",
"mkdist": "^2.4.1",
"nuxt": "4.4.6",
"sass-embedded": "^1.100.0",
"typescript": "~6.0.3",
"unbuild": "^3.6.1",
"vitepress": "2.0.0-alpha.17",
"vitest": "^4.1.8",
"vue": "^3.5.35",
"vue-tsc": "^3.3.3",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.0",
"codemirror": "^6.0.2"
},
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499"
}