-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.11 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
73
74
75
76
77
78
79
80
{
"name": "extension-os",
"displayName": "Extension-OS: Your AI Partner",
"version": "0.0.31",
"description": "AI at Your Fingertips, Anytime, Anywhere.",
"author": "acubeddu87@gmail.com",
"packageManager": "pnpm@11.8.0",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"typecheck": "tsc --noEmit --pretty false",
"check:messaging": "node scripts/check-plasmo-messaging.mjs",
"validate:artifact": "node scripts/validate-release-artifact.mjs",
"test:unit": "vitest run tests/unit --reporter=dot",
"test:e2e:built": "playwright test tests/basic.spec.ts tests/selectionMenu.spec.ts tests/llmSettings.spec.ts tests/promptFactory.spec.ts tests/execution.spec.ts tests/storageCompatibility.spec.ts --workers=1 --reporter=list",
"test:e2e": "pnpm build && pnpm test:e2e:built",
"test:live": "pnpm build && playwright test tests/llmExecution.spec.ts --workers=1 --reporter=list",
"test:release": "pnpm typecheck && pnpm check:messaging && pnpm test:unit && pnpm build && pnpm package && pnpm validate:artifact && pnpm test:e2e:built",
"test": "pnpm typecheck && pnpm check:messaging && pnpm test:unit && pnpm build && pnpm test:e2e:built"
},
"dependencies": {
"@plasmohq/messaging": "^0.7.2",
"@plasmohq/storage": "^1.15.0",
"@radix-ui/react-checkbox": "^1.3.5",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-dropdown-menu": "^2.1.18",
"@radix-ui/react-label": "^2.1.10",
"@radix-ui/react-scroll-area": "^1.2.12",
"@radix-ui/react-select": "^2.3.1",
"@radix-ui/react-separator": "^1.1.10",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.1",
"@radix-ui/react-tooltip": "^1.2.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.1.1",
"deepmerge": "^4.3.1",
"lucide-react": "^1.21.0",
"plasmo": "0.90.5",
"react": "19.2.7",
"react-dom": "19.2.7",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@playwright/test": "^1.61.0",
"@types/chrome": "0.2.0",
"@types/node": "26.0.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.5.0",
"postcss": "^8.5.15",
"prettier": "3.8.4",
"tailwindcss": "^3.4.19",
"typescript": "6.0.3",
"vitest": "^4.1.9"
},
"manifest": {
"host_permissions": [
"http://*/*"
],
"key": "$CRX_PUBLIC_KEY",
"oauth2": {
"client_id": "$OAUTH_CLIENT_ID",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"permissions": [
"contextMenus",
"clipboard",
"sidePanel",
"identity",
"identity.email"
]
}
}