-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "coderchart",
"displayName": "coderchart",
"version": "1.1.0",
"author": "harley",
"description": "Chrome extension that auto-renders Mermaid diagrams on ChatGPT with inline downloads.",
"type": "module",
"license": "MIT",
"keywords": [
"chrome-extension",
"mermaid",
"diagram",
"chatgpt",
"react",
"vite"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite",
"build": "tsc --project tsconfig.build.json && vite build",
"preview": "vite preview",
"fmt": "prettier --write '**/*.{tsx,ts,json,css,scss,md}'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test --config=tests/e2e/playwright.config.ts",
"zip": "pnpm run build && node src/zip.js"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"mermaid": "^10.9.1"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.26",
"@types/chrome": "^0.0.246",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@vitejs/plugin-react": "^4.1.0",
"gulp": "^5.0.0",
"gulp-zip": "^6.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^5.4.10",
"@playwright/test": "^1.48.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.2.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@vitest/ui": "^1.6.0",
"happy-dom": "^13.8.3",
"playwright": "^1.48.0",
"vitest": "^1.6.0",
"vitest-fetch-mock": "^0.4.1"
}
}