-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
{
"name": "vue3-highlight-text-color",
"version": "0.0.1",
"description": "Hightlight text and save range",
"author": {
"name": "alivadjid",
"url": "https://github.com/alivadjid"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alivadjid/text-marker-range.git"
},
"keywords": [
"vue3",
"text",
"hightlight",
"marker",
"vue",
"vuejs",
"save-hightlight"
],
"private": false,
"type": "module",
"files": [
"dist/*"
],
"main": "dist/text-key-lib.js",
"module": "dist/text-key-lib.umd.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/text-key-lib.js",
"require": "./dist/text-key-lib.umd.cjs"
},
"./style.css": "./dist/index.css"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"types": "vue-tsc --noEmit"
},
"dependencies": {
"vite-plugin-dts": "^3.5.0",
"vue": "3.3.4"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-sucrase": "^5.0.1",
"@vitejs/plugin-vue": "4.2.3",
"typescript": "5.1.6",
"vite": "4.4.8",
"vue-tsc": "1.8.8"
}
}