-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "@leyton-techlab/vue-input-highlighter",
"version": "0.0.6",
"main": "./dist/vue-input-highlighter.umd.js",
"module": "./dist/vue-input-highlighter.es.js",
"exports": {
".": {
"import": "./dist/vue-input-highlighter.es.js",
"require": "./dist/vue-input-highlighter.umd.js"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist/"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
},
"description": "Vue component that let you highlight content inside an input according to regexes",
"repository": {
"type": "git",
"url": "git+https://github.com/leyton-group/vue-input-highlighter.git"
},
"keywords": [
"ux",
"vue",
"vue3",
"input",
"highlight",
"highlighter"
],
"author": "galinor",
"bugs": {
"url": "https://github.com/leyton-group/vue-input-highlighter/issues"
},
"homepage": "https://github.com/leyton-group/vue-input-highlighter#readme"
}