-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.14 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.14 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "yt-quick-actions",
"description": "YT Quick Actions is a web extension for YouTube making actions related to watch later playlist management quicker to access.",
"private": true,
"version": "1.3.0",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "vue-tsc --noEmit",
"postinstall": "wxt prepare",
"test": "vitest",
"eslint": "eslint ./",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case",
"upper-case"
]
]
}
},
"release": {
"branches": [
"master"
],
"tagFormat": "${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"releaseRules": [
{
"type": "refactor",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]",
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
],
[
"@semantic-release/github",
{
"assets": [
".output/yt-quick-actions-*.zip",
".output/yt-quick-actions-*.sha512sum"
]
}
]
]
},
"dependencies": {
"@tailwindcss/vite": "^4.1.16",
"@vueuse/core": "^14.0.0",
"daisyui": "^5.3.10",
"loglevel": "^1.9.2",
"loglevel-plugin-prefix": "^0.8.4",
"rxjs": "^7.8.2",
"tailwindcss": "^4.1.16",
"vue": "^3.5.21",
"vue-i18n": "^11.2.2"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@intlify/unplugin-vue-i18n": "^11.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@wxt-dev/auto-icons": "^1.1.0",
"@wxt-dev/module-vue": "^1.0.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.5.1",
"globals": "^16.5.0",
"happy-dom": "^20.3.4",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^4.0.6",
"vue-tsc": "^3.0.6",
"wxt": "^0.20.11"
}
}