-
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.22 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.22 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.0",
"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.1.42",
"@types/node": "^25.9.1",
"@vitest/coverage-istanbul": "^4.1.8",
"archiver": "^7.0.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}