-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.05 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.05 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
{
"name": "github-codeowners-filter-chrome-extension",
"version": "1.0.2",
"description": "A Chrome extension that enhances GitHub's pull request file view by adding the ability to filter files by code owners.",
"repository": {
"type": "git",
"url": "git@github.com:YossiSaadi/github-codeowners-filter-chrome-extension.git"
},
"main": "index.js",
"scripts": {
"dev": "vite build --watch",
"clean": "rm -rf dist",
"build": "yarn clean && vite build",
"build:zip": "yarn build && zip -r github-codeowners-filter-chrome-extension.zip dist",
"lint": "eslint src/**/*.ts"
},
"keywords": [],
"author": "YossiSaadi",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.283",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.6.3",
"vite": "^5.4.11"
}
}