-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.99 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
57
58
59
60
61
{
"name": "SHRED",
"displayName": "SHRED",
"version": "3.0.4",
"description": "Browser Extension: Guitar tabs for music streaming services",
"author": "Plasmo Corp. <foss@plasmo.com>",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"lint": "eslint src/** --cache && prettier --check '**/*.{ts,tsx,scss,json}' --cache --cache-strategy metadata",
"format": "prettier --write **/*.{js,jsx,ts,tsx,json,css,scss,md,html}"
},
"dependencies": {
"@abraham/reflection": "^0.12.0",
"@plasmohq/messaging": "^0.6.2",
"@tanstack/react-query": "^5.63.0",
"clsx": "^2.1.1",
"js-logger": "^1.6.1",
"lodash": "^4.17.21",
"plasmo": "0.89.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.6.0",
"tsyringe": "^4.8.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@tanstack/eslint-plugin-query": "^5.62.16",
"@types/chrome": "0.0.293",
"@types/lodash": "^4.17.14",
"@types/node": "22.10.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/webextension-polyfill": "^0.12.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"postcss": "^8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "5.7.3",
"typescript-eslint": "^8.20.0"
},
"manifest": {
"host_permissions": [
"https://*.songsterr.com/*"
],
"permissions": [
"tabs",
"declarativeContent"
]
}
}