-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.04 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
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
{
"name": "review-format-kit",
"version": "0.1.0",
"description": "Review Format Kit (RFK) - Standardize your code review comments with ease.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && vite build --config vite.content.config.ts",
"postbuild": "node scripts/validate-build.cjs",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,css}\"",
"package:chrome": "web-ext build -s dist -a packages --overwrite-dest",
"package:firefox": "npm run build && node scripts/prepare-firefox.cjs && web-ext build -s dist -a packages --overwrite-dest",
"prepare": "husky"
},
"keywords": [
"chrome-extension",
"firefox-addon",
"code-review",
"github",
"conventional-comments",
"developer-tools"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@types/chrome": "^0.0.268",
"@types/node": "^20.14.10",
"@types/webextension-polyfill": "^0.12.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^2.0.3",
"@vitest/ui": "^2.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"happy-dom": "^14.12.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"playwright": "^1.45.1",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vitest": "^2.0.3",
"web-ext": "^8.10.0"
},
"dependencies": {
"webextension-polyfill": "^0.12.0"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{json,css}": [
"prettier --write"
]
}
}