-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
80 lines (80 loc) · 2.16 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
{
"name": "vue3-emoji-picker",
"version": "1.1.8",
"license": "MIT",
"author": "delowardev",
"repository": {
"type": "git",
"url": "git+https://github.com/delowardev/vue3-emoji-picker"
},
"bugs": {
"url": "https://github.com/delowardev/vue3-emoji-picker/issues"
},
"homepage": "https://github.com/delowardev/vue3-emoji-picker/",
"keywords": [
"vue3-emoji-picker",
"emoji-picker",
"emoji"
],
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist"
],
"main": "./dist/emoji-picker.umd.js",
"module": "./dist/emoji-picker.es.js",
"types": "./dist/emoji-picker.es.d.ts",
"exports": {
".": {
"import": "./dist/emoji-picker.es.js",
"require": "./dist/emoji-picker.umd.js"
},
"./css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"prepare": "husky install",
"type-check": "vue-tsc --noEmit",
"lint": "eslint --ext .ts,.js,.vue ./",
"lint:fix": "eslint --fix --ext .ts,.js,.vue ./",
"prettier": "prettier -c --ignore-unknown ./src",
"prettier:fix": "prettier -c --write --ignore-unknown ./src",
"precommit": "npm run type-check && npm run prettier:fix && npm run lint:fix && vite build",
"test": "vitest",
"test:once": "vitest run",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@babel/types": "^7.15.6",
"@types/node": "^16.11.7",
"@typescript-eslint/parser": "^5.5.0",
"@vitejs/plugin-vue": "^1.2.5",
"@vitest/coverage-c8": "^0.24.5",
"@vue/compiler-sfc": "^3.0.5",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^8.1.1",
"husky": "^7.0.4",
"lint-staged": ">=10",
"prettier": "^2.5.0",
"sass": "^1.43.2",
"typescript": "^4.3.2",
"vite": "^2.4.2",
"vite-plugin-dts": "^3.6.0",
"vitest": "^0.24.5",
"vue-eslint-parser": "^8.0.1",
"vue-tsc": "^1.2.1"
},
"lint-staged": {
"*.{js,ts,vue}": "npm run lint:fix",
"*.{js,ts,css,md,vue}": "npm run prettier:fix"
},
"dependencies": {
"@popperjs/core": "^2.11.0",
"idb": "^7.1.0",
"vue": "^3.2.23"
}
}