-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "@mergehez/vue-emoji-picker",
"version": "0.0.1",
"description": "A lightweight vue 3 emoji picker component",
"author": "mergehez <[email protected]>",
"license": "MIT",
"keywords": ["vue", "vue3", "component", "emoji", "picker", "emoji-picker", "lightweight"],
"repository": {
"type": "git",
"url": "git+https://github.com/mergehez/vue-emoji-picker.git"
},
"homepage": "https://github.com/mergehez/vue-emoji-picker",
"type": "module",
"main": "./dist/index.es.js",
"module": "./dist/index.es.js",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.es.js"
},
"./styles.css": "./dist/styles.css",
"./emoji-set.json": "./dist/data/emoji-set.json"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/*.css",
"dist/data/emoji-set.json"
],
"scripts": {
"dev": "vite --host",
"build": "vue-tsc -b --declaration --emitDeclarationOnly && vite build && bun post-minify.mjs",
"build2": "vue-tsc -b --declaration --emitDeclarationOnly && vite build",
"preview": "vite preview"
},
"peerDependencies": {
"vue": "^3.5"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"emoji-datasource": "^15.1.2",
"emojilib": "^4.0.1",
"postcss": "^8.4.49",
"rollup-plugin-gzip": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.4.16",
"terser": "^5.37.0",
"typescript": "~5.6.3",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0",
"vue-tsc": "^2.1.10"
}
}