-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.55 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
{
"name": "vue-frimousse",
"version": "0.1.4",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"author": "xiaoluoboding <xiaoluoboding@gmail.com>",
"license": "MIT",
"homepage": "https://vue-frimousse.robertshaw.id",
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoluoboding/vue-frimousse.git"
},
"scripts": {
"dev": "vite",
"dev:nuxt": "nuxi dev playground --port 5174",
"dev:nuxt:build": "nuxi build playground",
"dev:nuxt:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"build:dev": "tsdown --watch",
"build:lib": "tsdown",
"build:module": "nuxt-module-build build --outDir lib/nuxt",
"build:umd": "tsdown --config tsdown.config.umd.ts",
"build": "run-p type-check \"build-only {@}\" --",
"release": "pnpm run build:lib && pnpm run build:module && pnpm run build:umd",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix",
"lint": "run-s lint:*",
"format": "prettier --write src/",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"sideEffects": [
"**/*.css",
"**/src/*"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"./nuxt": {
"import": {
"types": "./lib/nuxt/types.d.mts",
"default": "./lib/nuxt/module.mjs"
}
},
"./src/*": {
"import": "./src/*",
"default": "./src/*"
}
},
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"devDependencies": {
"@nuxt/kit": "^4.0.3",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.0.3",
"@prettier/plugin-oxc": "^0.0.4",
"@senojs/rollup-plugin-style-inject": "^0.2.3",
"@shikijs/transformers": "^3.12.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.12",
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.16.5",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/eslint-plugin": "^1.3.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dedent": "^1.6.0",
"emojibase": "^16.0.0",
"emojibase-data": "^16.0.3",
"eslint": "^9.31.0",
"eslint-plugin-oxlint": "~1.8.0",
"eslint-plugin-vue": "~10.3.0",
"jiti": "^2.4.2",
"jsdom": "^26.1.0",
"lucide-vue-next": "^0.542.0",
"npm-run-all2": "^8.0.4",
"nuxt": "^4.0.3",
"oxlint": "~1.8.0",
"pinia": "^3.0.3",
"prettier": "3.6.2",
"reka-ui": "^2.5.0",
"shiki": "^3.12.0",
"slugify": "^1.6.6",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.12",
"tsdown": "^0.14.2",
"tw-animate-css": "^1.3.7",
"typescript": "~5.8.0",
"unocss": "^66.4.2",
"unplugin-vue": "^7.0.1",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-vue-devtools": "^8.0.0",
"vitest": "^3.2.4",
"vitest-fetch-mock": "^0.4.5",
"vue": "^3.5.20",
"vue-frimousse": "link:",
"vue-router": "^4.5.1",
"vue-sonner": "^2.0.8",
"vue-tsc": "^3.0.4"
},
"dependencies": {
"@number-flow/vue": "^0.4.8",
"@vueuse/core": "^13.8.0",
"@vueuse/head": "^2.0.0",
"motion": "^12.23.12",
"vaul-vue": "^0.4.1"
}
}