-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
79 lines (79 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
76
77
78
79
{
"name": "vue-word-highlighter",
"private": true,
"workspaces": [
"vue-word-highlighter",
"example",
"tests-vue3",
"tests-vue2"
],
"scripts": {
"lint": "biome check --write ./vue-word-highlighter/**/*.ts ./example/**/*.{ts,vue} ./tests-vue3/**/*.ts ./tests-vue2/**/*.ts",
"prepare": "husky install",
"build:package": "yarn workspace vue-word-highlighter run build",
"release:package": "yarn workspace vue-word-highlighter run release",
"build:example": "yarn workspace example run build",
"dev:example": "yarn workspace example run dev",
"test:v2": "vue-demi-switch 2 vue2 && yarn workspace tests-vue2 run test",
"test:v3": "vue-demi-switch 3 && yarn workspace tests-vue3 run test",
"semantic-release": "semantic-release"
},
"dependencies": {
"vue-demi": "0.14.10"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "18.19.68",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vue/composition-api": "1.7.2",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"semantic-release": "19.0.5",
"vue": "3.5.13",
"vue2": "npm:vue@2.7.16"
},
"lint-staged": {
"{vue-word-highlighter,example,tests-vue3,tests-vue2}/**/*.{js,ts,vue}": [
"yarn lint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"feat",
"fix",
"docs",
"style",
"refactor",
"test",
"revert",
"BREAKING CHANGE",
"chore"
]
]
}
},
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/kawamataryo/text-highlight.git"
}
}