forked from delowardev/vue3-emoji-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "vue3-emoji-picker",
"version": "1.1.7",
"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"
],
"files": [
"dist"
],
"main": "./dist/emoji-picker.umd.js",
"module": "./dist/emoji-picker.es.js",
"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": "^6.4.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-c8": "^0.33.0",
"@vue/compiler-sfc": "^3.0.5",
"eslint": "^8.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": ">=10",
"prettier": "^3.0.1",
"sass": "^1.43.2",
"typescript": "^4.3.2",
"vite": "^4.4.9",
"vitest": "^0.34.1",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.8"
},
"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"
}
}