-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 1.66 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
{
"name": "vuemoji-picker",
"type": "module",
"version": "0.3.2",
"description": "Vue 2 and 3 lightweight emoji picker.",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/vuemoji-picker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/vuemoji-picker.git"
},
"keywords": [
"vue",
"emoji",
"picker"
],
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "vite serve dev",
"dev:build": "vite build dev",
"dev:preview": "vite preview dev",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@vue/composition-api": "^1.7.0",
"vue": "^2.6.14 || ^3.2.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"emoji-picker-element": "^1.25.0",
"vue-demi": "^0.14.10"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@types/node": "^22.5.5",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/tsconfig": "^0.5.1",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"tslib": "^2.7.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vite": "^5.1.8",
"vue": "^3.5.6"
}
}