-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "txmeeting-extractor",
"version": "1.4.0",
"description": "Chrome extension for extracting meeting information from Tencent Meeting cloud recordings",
"type": "module",
"scripts": {
"dev": "vite build --mode development --watch",
"build": "node scripts/generate-icons.mjs && vite build && node scripts/post-build.mjs",
"type-check": "tsc --noEmit",
"generate-icons": "node scripts/generate-icons.mjs",
"package": "pnpm run build && bash scripts/package.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"chrome-extension",
"tencent-meeting",
"meeting-notes"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.5.2",
"@types/chrome": "^0.1.36",
"@types/jest": "^29.5.12",
"@types/node": "^25.0.10",
"@types/react": "^19.0.11",
"@types/react-dom": "^19.0.5",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-react": "^4.3.5",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.5.2",
"sharp": "^0.34.5",
"ts-jest": "^29.1.2",
"typescript": "^5.9.3",
"vite": "^8.0.0"
},
"dependencies": {
"@types/react-window": "^1.8.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-window": "^2.2.5",
"recharts": "^3.7.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}