-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.69 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
{
"name": "web-extension-template",
"version": "0.1.0",
"private": true,
"description": "",
"author": {
"name": "noriapi"
},
"type": "module",
"scripts": {
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"compile": "tsc --noEmit",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"e2e": "playwright test",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,html}",
"lint": "eslint . && prettier --check src/**/*.{js,jsx,ts,tsx,html} && tsc --noEmit",
"lint:fix": "eslint --fix . && prettier --write src/**/*.{js,jsx,ts,tsx,html}",
"submit": "env-cmd -f .env.submit --silent -- tsx scripts/submit.ts",
"submit:firefox": "env-cmd -f .env.submit --silent -- tsx scripts/submit.ts -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox"
},
"dependencies": {
"solid-js": "^1.9.4"
},
"devDependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@eslint/eslintrc": "^3.2.0",
"@playwright/test": "^1.50.0",
"@types/node": "^20.17.16",
"@types/webextension-polyfill": "^0.10.7",
"commander": "^12.1.0",
"env-cmd": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-solid": "^0.13.1",
"globals": "^14.0.0",
"playwright": "^1.50.0",
"prettier": "^3.4.2",
"publish-browser-extension": "^1.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^7.18.0",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.4.14",
"vite-plugin-solid": "^2.11.0",
"wxt": "^0.16.6"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.18.2"
}
}