-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.78 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
{
"name": "github-issue-toc",
"displayName": "GitHub Issue TOC",
"type": "module",
"version": "2.0.2",
"packageManager": "pnpm@10.17.1",
"description": "Adds a table of contents to GitHub issue pages for faster browsing and navigation.",
"author": "Frankie <1426203851@qq.com>",
"license": "MIT",
"funding": {
"type": "paypal",
"url": "https://paypal.me/tofrankie"
},
"homepage": "https://chromewebstore.google.com/detail/github-issue-toc/ankjaadpkoopmdgoahdmnbfbbpnbefbj",
"bugs": {
"url": "https://github.com/tofrankie/github-issue-toc/issues",
"email": "1426203851@qq.com"
},
"scripts": {
"dev": "plasmo dev --target=chrome-mv3",
"dev:edge": "plasmo dev --target=edge-mv3",
"build": "plasmo build --zip --target=chrome-mv3",
"build:edge": "plasmo build --zip --target=edge-mv3",
"lint": "run-s lint:eslint lint:prettier lint:stylelint",
"lint:eslint": "eslint . --cache --fix",
"lint:prettier": "prettier . --cache --write '!pnpm-lock.yaml'",
"lint:stylelint": "stylelint '**/*.css' --cache --fix",
"github:release": "tfr"
},
"dependencies": {
"plasmo": "0.90.5",
"react": "19.1.1",
"react-dom": "19.1.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@tofrankie/action": "^0.0.8",
"@tofrankie/eslint": "^0.4.0",
"@tofrankie/prettier": "^0.2.0",
"@tofrankie/stylelint": "^0.3.0",
"@types/chrome": "0.1.12",
"@types/node": "26.0.0",
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9",
"eslint": "^10.5.0",
"npm-run-all2": "^9.0.2",
"prettier": "3.8.4",
"stylelint": "^17.13.0",
"typescript": "5.9.3"
},
"manifest": {
"host_permissions": [
"https://github.com/*"
],
"permissions": [
"webNavigation"
]
}
}