-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.24 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.24 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
69
70
71
{
"author": "DiffPlug",
"dependencies": {
"@primer/octicons-react": "^19.18.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@wxt-dev/webextension-polyfill": "^1.0.0",
"highlight.js": "^11.11.1",
"lucide-react": "^0.543.0",
"overtype": "workspace:*",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^3.1.1",
"webextension-polyfill": "^0.12.0"
},
"description": "Syntax highlighting and autosave for comments on GitHub (and other other markdown-friendly websites).",
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@playwright/test": "^1.46.0",
"@tailwindcss/vite": "^4.1.13",
"@testing-library/jest-dom": "^6.6.4",
"@types/express": "^4.17.21",
"@types/har-format": "^1.2.16",
"@types/node": "^22.16.5",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"express": "^4.19.2",
"linkedom": "^0.18.12",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.13",
"tsx": "^4.19.1",
"typescript": "^5.8.3",
"vite": "^7.1.5",
"vitest": "^3.2.4",
"wxt": "^0.20.7"
},
"keywords": [
"browser-extension",
"chrome-extension",
"firefox-addon",
"github",
"gitlab",
"bitbucket",
"syntax highlighting"
],
"license": "MIT",
"name": "gitcasso",
"scripts": {
"biome": "biome check .",
"biome:fix": "biome check --write .",
"biome:fix:unsafe": "biome check --write --unsafe .",
"build:overtype": "pnpm -r --filter=overtype run build",
"build": "pnpm run build:overtype && wxt build",
"build:dev": "pnpm run build:overtype && wxt build --mode development",
"build:firefox": "wxt build -b firefox",
"precommit": "pnpm biome:fix && pnpm typecheck && pnpm test",
"typecheck": "tsc --noEmit",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"postinstall": "pnpm run build:overtype && wxt prepare",
"test": "vitest run",
"playground": "vite --config vite.playground.config.ts",
"playground:build": "vite build --config vite.playground.config.ts",
"corpus:har:record": "tsx tests/corpus-har-record.ts",
"corpus": "tsx tests/corpus-view.ts"
},
"type": "module",
"version": "1.1.0"
}