-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 824 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 824 Bytes
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
{
"name": "wxt-starter",
"description": "manifest.json description",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"dev:chrome": "wxt -b chrome",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"build:chrome": "wxt build -b chrome",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"zip:chrome": "wxt zip -b chrome",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"devDependencies": {
"dotenv": "^17.2.3",
"typescript": "^5.9.3",
"wxt": "^0.20.6"
},
"dependencies": {
"@octokit/graphql-schema": "^15.26.1",
"@webext-core/messaging": "^2.3.0",
"@webext-core/storage": "^1.2.0",
"js-base64": "^3.7.8",
"octokit": "^5.0.5"
}
}