-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 KB
/
package.json
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
{
"name": "mermaid-previewer",
"displayName": "Mermaid Previewer",
"version": "1.4.4",
"description": "Preview and export mermaid.",
"scripts": {
"dev": "plasmo dev --verbose",
"test": "playwright test",
"test-ui": "playwright test --ui",
"test-report": "playwright show-report",
"build": "plasmo build",
"package": "plasmo package",
"gcp-token": "pnpm dlx gcp-refresh-token",
"dep-outdate": "pnpm outdated"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zephyraft/mermaid-previewer.git"
},
"keywords": [
"chrome-extension",
"mermaid"
],
"author": "zephyraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/zephyraft/mermaid-perviewer/issues"
},
"homepage": "https://github.com/zephyraft/mermaid-perviewer#readme",
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"@fluentui/react-components": "^9.56.8",
"@fluentui/react-icons": "^2.0.270",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.13.0",
"mermaid": "^10.9.3",
"nanoid": "^5.0.9",
"plasmo": "^0.89.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@playwright/test": "^1.49.1",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/webextension-polyfill": "^0.12.1",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"manifest": {
"host_permissions": [
"https://*/*"
],
"permissions": [
"downloads"
]
}
}