-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.98 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": "@kamiazya/vue-highlight",
"version": "0.0.2",
"description": "Vue(3+) directive for highlighting keywords in text",
"type": "module",
"main": "src/vue-highlight.ts",
"module": "src/vue-highlight.ts",
"types": "src/vue-highlight.ts",
"exports": {
".": {
"import": "./src/vue-highlight.ts",
"require": "./src/vue-highlight.ts",
"types": "./src/vue-highlight.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true,
"main": "./dist/vue-highlight.cjs",
"module": "./dist/vue-highlight.js",
"types": "./dist/vue-highlight.d.ts",
"exports": {
".": {
"import": "./dist/vue-highlight.js",
"require": "./dist/vue-highlight.cjs",
"types": "./dist/vue-highlight.d.ts"
},
"./package.json": "./package.json"
}
},
"scripts": {
"check": "biome ci .",
"build": "vite build",
"format": "biome check --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"vue",
"vue3",
"vue-directive",
"highlight",
"custom-highlight"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kamiazya/vue-highlight.git"
},
"bugs": {
"url": "https://github.com/kamiazya/vue-highlight/issues"
},
"author": "Yuki Yamazaki <[email protected]>",
"license": "MIT",
"sideEffects": false,
"peerDependencies": {
"vue": "^3.x"
},
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vue": "^3.4.30"
},
"packageManager": "[email protected]+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}