forked from gitpod-io/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.68 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "gitpod",
"displayName": "Gitpod",
"version": "2.2.2",
"description": "The developer platform for on-demand cloud development environments. Create software faster and more securely.",
"author": "Gitpod <[email protected]>",
"homepage": "https://www.gitpod.io",
"scripts": {
"dev": "plasmo dev --source-maps --no-minify",
"watch-dev": "pnpm build-dev-tools && .bin/watch-sync serve ./build/chrome-mv3-dev",
"watch-prod": "pnpm build-dev-tools && .bin/watch-sync serve ./build/chrome-mv3-prod",
"build": "plasmo build --source-maps --no-minify",
"test": "cd test && pnpm test",
"package": "plasmo package",
"format": "prettier --experimental-ternaries --write .",
"build-dev-tools": "sh dev/build.sh"
},
"dependencies": {
"@plasmohq/storage": "^1.10.0",
"@tailwindcss/forms": "^0.5.7",
"classnames": "^2.5.1",
"lucide-react": "^0.378.0",
"plasmo": "^0.88.0",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.5.0",
"validator": "^13.12.0",
"webext-dynamic-content-scripts": "^10.0.2",
"webext-permission-toggle": "^5.0.2",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@types/chai": "^4.3.6",
"@types/chrome": "0.0.268",
"@types/mocha": "^10.0.7",
"@types/node": "20.14.5",
"@types/react": "18.3.3",
"@types/react-dom": "18.2.7",
"@types/validator": "^13.12.0",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.7.0",
"autoprefixer": "^10.4.15",
"chai": "^5.1.1",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"htmlnano": "2.0.3",
"mocha": "^10.6.0",
"postcss": "^8.4.31",
"prettier": "3.2.5",
"puppeteer": "^22.12.1",
"source-map-support": "^0.5.21",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
},
"manifest": {
"optional_host_permissions": [
"*://*/*"
],
"permissions": [
"scripting",
"contextMenus",
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{dbcc42f9-c979-4f53-8a95-a102fbff3bbe}"
}
}
},
"pnpm": {
"supportedArchitectures": {
"libc": [
"musl"
]
},
"overrides": {
"sharp": "0.33.4"
}
}
}