This repository was archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 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
{
"name": "web-ext-sample",
"description": "Web Extensions Sample",
"version": "1.0.0",
"author": "Kimiaki Kuno <knokmki612@gmail.com>",
"bugs": {
"url": "https://github.com/tuqulore/web-ext-sample/issues"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@tsconfig/recommended": "1.0.1",
"@types/jest": "27.4.1",
"@types/react": "^17.0.41",
"@types/react-dom": "^17.0.14",
"@types/webextension-polyfill": "^0.8.2",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"@vitejs/plugin-react": "^1.2.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tsc": "2.0.0",
"jest": "27.5.1",
"npm-run-all": "4.1.5",
"prettier": "2.6.0",
"rollup-plugin-copy": "^3.4.0",
"ts-jest": "27.1.3",
"typescript": "4.6.2",
"vite": "^2.8.6",
"web-ext": "^6.7.0",
"webextension-polyfill": "^0.8.0"
},
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/tuqulore/web-ext-sample#readme",
"keywords": [
"webextension"
],
"license": "MIT",
"main": "/src/main.ts",
"repository": "git@github.com:tuqulore/web-ext-sample.git",
"scripts": {
"build": "run-s build:{vite,web-ext}",
"build:vite": "vite build",
"build:web-ext": "web-ext --source-dir dist build",
"dev": "vite",
"dev:web-ext": "web-ext --source-dir dist run",
"format": "run-s format:*",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"lint": "eslint .",
"serve": "run-s build:vite dev:web-ext",
"test": "jest --passWithNoTests"
}
}