-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.26 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
{
"name": "github-pr-reverse-comments",
"version": "1.2.1",
"description": "Dev tooling for the GitHub PR Reverse Comments browser extension. The extension itself has no build step; these scripts only lint, format, test, and package it.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ShiosOS/github-pr-reverse-comments.git"
},
"homepage": "https://github.com/ShiosOS/github-pr-reverse-comments#readme",
"bugs": {
"url": "https://github.com/ShiosOS/github-pr-reverse-comments/issues"
},
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"build": "node scripts/build.mjs"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chrome": "^0.2.5",
"@types/node": "^26.1.2",
"@vitest/coverage-istanbul": "^4.1.10",
"archiver": "^8.0.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.9.0",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"typescript": "^7.0.2",
"vitest": "^4.1.8"
}
}