-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.51 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
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
{
"name": "blanked",
"version": "0.0.23",
"description": "A Nuxt module to speed up your development",
"repository": "HugoRCD/blanked",
"license": "MIT",
"type": "module",
"author": "Hugo Richard",
"contributors": [
"Hugo Richard <contact@hrcd.fr>",
"Johann Cavallucci"
],
"homepage": "https://blanked.hrcd.fr/",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"keywords": [
"nuxt",
"typescript",
"tailwindcss",
"color-mode",
"nuxt-icon",
"nuxt-module",
"vue-sonner",
"sonner",
"tailwindcss-icons",
"heroicons",
"lucide",
"floatingui",
"vueuse"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "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 prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@egoist/tailwindcss-icons": "^1.7.2",
"@floating-ui/vue": "^1.0.6",
"@headlessui/vue": "^1.7.19",
"@iconify-json/heroicons": "^1.1.19",
"@iconify-json/lucide": "^1.1.154",
"@nuxt/fonts": "^0.0.1",
"@nuxtjs/color-mode": "latest",
"@nuxtjs/tailwindcss": "latest",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@vueuse/nuxt": "^10.7.2",
"nuxt-headlessui": "^1.1.5",
"nuxt-icon": "^0.6.8",
"tailwindcss": "^3.4.1",
"vue-sonner": "^1.0.3"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/kit": "^3.8.2",
"@nuxt/module-builder": "^0.5.4",
"@nuxt/schema": "^3.8.2",
"@nuxt/test-utils": "^3.8.1",
"@types/node": "^20.10.3",
"changelogen": "^0.5.5",
"eslint": "^8.55.0",
"nuxt": "latest",
"vitest": "^0.33.0"
},
"eslintConfig": {
"root": true,
"extends": [
"@nuxt/eslint-config"
],
"ignorePatterns": [
"dist",
"node_modules",
".github",
"CHANGELOG.md",
"package.json",
"bun.lockb"
]
}
}