-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
79 lines (79 loc) · 1.55 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": "vinehelper",
"version": "2.10.9",
"description": "Improve the Amazon Vine experience.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"build:release": "node build.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/FMaz008/VineHelper.git"
},
"keywords": [
"amazon",
"vine",
"helper"
],
"author": "VineHelper <https://vinehelper.ovh/>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FMaz008/VineHelper/issues"
},
"homepage": "https://github.com/FMaz008/VineHelper#readme",
"dependencies": {
"jquery": "^3.7.1",
"socket.io": "^4.7.5",
"vine-styling": "github:FMaz008/vine-styling.git#main"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@release-it/bumper": "^6.0.1",
"archiver": "^7.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"release-it": "^17.1.1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.{md, html, css}": "prettier --write"
},
"release-it": {
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"assets": [
"VH-*.zip"
]
},
"hooks": {
"after:bump": [
"yarn build:release"
]
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/bumper": {
"out": "manifest*.json"
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}