-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 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
{
"name": "@xenodrive/nuxt-basic-ui",
"version": "2.0.0-alpha.17",
"description": "Basic UI library for Nuxt",
"author": "Xenodrive, Inc.",
"license": "NONE",
"exports": {
".": {
"types": "./types.d.ts",
"import": "./dist/module.mjs"
},
"./*": "./dist/runtime/*"
},
"type": "module",
"main": "./dist/module.mjs",
"types": "./types.d.ts",
"files": [
"dist",
"./types.d.ts"
],
"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 test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"type:check": "vue-tsc --noEmit --pretty"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@nuintun/qrcode": "^5.0.2",
"@nuxt/kit": "^3.16.2",
"@tailwindcss/postcss": "4.1.4",
"@tailwindcss/vite": "4.1.4",
"@vueuse/core": "^13.1.0",
"@vueuse/nuxt": "^13.1.0",
"immer": "^10.1.1",
"tailwind-merge": "^3.2.0",
"tailwindcss": "4.1.4"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^1.3.0",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^3.16.2",
"@nuxt/test-utils": "^3.17.2",
"@rushstack/eslint-patch": "^1.11.0",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vue/eslint-config-prettier": "^10.2.0",
"changelogen": "^0.6.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"nuxt": "^3.16.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "5.8.3",
"vue-tsc": "^2.2.10"
},
"packageManager": "pnpm@10.9.0",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"unrs-resolver"
]
}
}