-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 906 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 906 Bytes
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
{
"name": "@bitwarden/ai-plugins",
"version": "0.0.0",
"description": "Bitwarden AI Plugins",
"repository": {
"type": "git",
"url": "git+https://github.com/bitwarden/ai-plugins.git"
},
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bitwarden/ai-plugins/issues"
},
"homepage": "https://bitwarden.com",
"devDependencies": {
"cspell": "9.8.0",
"husky": "9.1.7",
"lint-staged": "16.2.3",
"prettier": "3.6.2"
},
"lint-staged": {
"*": "prettier --cache --write --ignore-unknown"
},
"scripts": {
"prepare": "husky",
"lint": "npm run lint:prettier && npm run lint:spelling",
"lint:prettier": "prettier --check .",
"lint:spelling": "cspell lint --no-progress --no-summary --gitignore '**'",
"format": "prettier --write ."
}
}