-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 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
66
67
68
69
{
"name": "@fumeapp/unoui",
"version": "0.0.14",
"description": "UnoUI",
"repository": "https://github.com/fumeapp/unoui",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"build": "nuxt-module-build",
"prepack": "pnpm build",
"play": "nuxi dev playground",
"dev": "nuxi dev docs",
"build:docs": "nuxi generate docs",
"lint": "eslint .",
"typecheck": "nuxi typecheck",
"prepare": "nuxi prepare docs",
"release": "npm run lint && npm run prepack && changelogen --release && npm publish --access=public && git push --follow-tags",
"migrate": "jiti ./scripts/migrate.ts"
},
"dependencies": {
"@headlessui/vue": "^1.7.14",
"@iconify-json/heroicons": "^1.1.11",
"@nuxt/kit": "^3.5.3",
"@nuxtjs/color-mode": "^3.2.0",
"@popperjs/core": "^2.11.8",
"@unocss/nuxt": "^0.53.1",
"@vueuse/core": "^10.2.0",
"@vueuse/integrations": "^10.2.0",
"@vueuse/math": "^10.2.0",
"defu": "^6.1.2",
"fuse.js": "^6.6.2",
"lodash-es": "^4.17.21",
"unocss": "^0.53.1"
},
"devDependencies": {
"@iconify-json/mdi": "^1.1.52",
"@iconify-json/simple-icons": "^1.1.57",
"@nuxt/content": "^2.7.0",
"@nuxt/devtools": "^0.6.1",
"@nuxt/eslint-config": "^0.1.1",
"@nuxt/module-builder": "^0.4.0",
"@nuxthq/studio": "^0.13.2",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.3.1",
"@vueuse/nuxt": "^10.2.0",
"changelogen": "^0.5.3",
"eslint": "^8.43.0",
"nuxt": "^3.5.3",
"nuxt-component-meta": "^0.5.3",
"nuxt-lodash": "^2.4.1",
"standard-version": "^9.5.0",
"v-calendar": "^3.0.3",
"vue-tsc": "1.6.3"
}
}