-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"name": "nuxt-ui-formwerk",
"version": "0.1.21",
"description": "A collection of beautiful, animated UI components for Nuxt applications",
"license": "MIT",
"repository": "https://github.com/genu/nuxt-ui-formwerk.git",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"files": [
"dist"
],
"type": "module",
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "pnpm dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "4.4.2",
"@vueuse/core": "14.2.1"
},
"devDependencies": {
"@nuxt/devtools": "3.2.4",
"@nuxt/eslint-config": "1.15.2",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.4.2",
"@nuxt/test-utils": "4.0.0",
"@types/culori": "4.0.1",
"@types/node": "latest",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"nuxt": "4.4.2",
"prettier": "3.8.3",
"typescript": "6.0.3",
"vitest": "4.1.4",
"vue-tsc": "3.2.7"
},
"peerDependencies": {
"@formwerk/core": "^0.14.4",
"@nuxt/ui": "^4.0.0",
"@internationalized/date": "^3.10.0"
}
}