-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.56 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
{
"name": "element-spotter",
"displayName": "ElementSpotter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"lint": "eslint \"**/*.{ts,tsx}\"",
"format": "prettier --write \"**/*.{ts,tsx,css,json}\""
},
"keywords": [
"element",
"spotter",
"highlighter"
],
"homepage": "https://github.com/Azdetic/ElementSpotter",
"bugs": {
"url": "https://github.com/Azdetic/ElementSpotter/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Azdetic/ElementSpotter.git"
},
"author": "Azdetic",
"license": "ISC",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^11.6.0",
"onFail": "download"
}
},
"manifest": {
"permissions": [
"activeTab",
"tabs",
"storage"
]
},
"type": "module",
"dependencies": {
"@plasmohq/storage": "^1.15.0",
"lucide-react": "^1.21.0",
"plasmo": "^0.90.5",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@types/chrome": "^0.2.0",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.5.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-react": "^7.37.5",
"postcss": "^8.5.15",
"prettier": "^3.9.1",
"tailwindcss": "^3.4.19",
"typescript": "^6.0.3"
}
}