-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.99 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.99 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
72
{
"name": "flow-extension",
"displayName": "Flow",
"version": "0.0.3",
"description": "Flow extension",
"author": "Flow",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build:store": "NODE_ENV=production CRX_PUBLIC_KEY= plasmo build --zip",
"package": "plasmo package",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"check": "pnpm run typecheck && pnpm run test"
},
"dependencies": {
"@clerk/chrome-extension": "^2.7.7",
"@plasmohq/storage": "^1.15.0",
"plasmo": "0.90.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "^7.9.4",
"tailwindcss": "3.4.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"jest-webextension-mock": "^4.0.0",
"jsdom": "^27.0.1",
"msw": "^2.11.6",
"postcss": "8.4.33",
"prettier": "3.2.4",
"typescript": "5.3.3",
"vitest": "^3.2.4"
},
"manifest": {
"key": "$CRX_PUBLIC_KEY",
"permissions": [
"cookies",
"storage",
"activeTab",
"tabs",
"scripting",
"notifications",
"debugger"
],
"host_permissions": [
"$PLASMO_PUBLIC_CLERK_SYNC_HOST/*",
"$CLERK_FRONTEND_API/*",
"https://docsend.com/*"
],
"externally_connectable": {
"matches": [
"$PLASMO_PUBLIC_CLERK_SYNC_HOST/*",
"http://localhost:3000/*"
]
}
},
"packageManager": "[email protected]+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}