-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "predict-touch-accuracy-ext",
"displayName": "Tap Analyzer",
"version": "0.0.2",
"description": "__MSG_extensionDescription__",
"author": "Kenta Kobayashi ([email protected])",
"type": "module",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint src --max-warnings=0",
"lint:markup": "markuplint \"src/**/*.tsx\"",
"format": "prettier --write src/**/*.{ts,tsx}"
},
"dependencies": {
"@plasmohq/messaging": "^0.6.2",
"plasmo": "0.84.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"globals": "^14.0.0",
"prettier": "3.2.4",
"typescript": "5.3.3"
},
"manifest": {
"permissions": [
"debugger",
"activeTab"
],
"default_locale": "ja"
},
"volta": {
"node": "20.11.0",
"pnpm": "8.15.2"
}
}