forked from gitpod-io/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.74 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.74 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
{
"name": "gitpod",
"displayName": "Gitpod",
"version": "2.1.9",
"description": "The developer platform for on-demand cloud development environments. Create software faster and more securely.",
"author": "Gitpod <info@gitpod.io>",
"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.9.0",
"@tailwindcss/forms": "^0.5.6",
"chrome-extension-hot-reload": "^0.2.2",
"classnames": "^2.3.2",
"crx-hotreload": "^1.0.6",
"plasmo": "^0.84.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"validator": "^13.11.0",
"webext-additional-permissions": "^2.4.0",
"webext-content-scripts": "^2.5.5",
"webext-detect-page": "^4.1.1",
"webext-domain-permission-toggle": "^4.1.0",
"webext-dynamic-content-scripts": "v9",
"webext-patterns": "^1.3.0",
"webext-polyfill-kinda": "^1.0.2",
"webext-tools": "^1.1.4",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@types/chai": "^4.3.6",
"@types/chrome": "0.0.243",
"@types/mocha": "^10.0.1",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/validator": "^13.11.1",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"autoprefixer": "^10.4.15",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"htmlnano": "2.0.3",
"mocha": "^10.2.0",
"postcss": "^8.4.31",
"prettier": "3.2.5",
"puppeteer": "^21.1.1",
"source-map-support": "^0.5.21",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "5.3.3"
},
"manifest": {
"optional_host_permissions": [
"*://*/*"
],
"permissions": [
"scripting",
"contextMenus",
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{dbcc42f9-c979-4f53-8a95-a102fbff3bbe}"
}
}
}
}