-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.37 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "github-search-preview",
"version": "0.1.1",
"description": "Show a preview of file results from GitHub search page",
"type": "module",
"scripts": {
"build": "run-p build:* --continue-on-error",
"build:typescript": "tsc --noEmit",
"build:bundle": "rollup -c && pnpm dlx web-ext build -o",
"fix": "run-p \"lint:css -- --fix\" \"lint:js -- --fix\" fix:prettier \"vitest -- --update\" --continue-on-error",
"fix:prettier": "prettier . --write",
"lint": "run-p lint:* --continue-on-error",
"lint:css": "stylelint \"source/**/*.css\"",
"lint:js": "eslint .",
"watch": "run-p watch:* --continue-on-error",
"watch:typescript": "tsc --noEmit --watch --preserveWatchOutput",
"watch:bundle": "rollup -c --watch"
},
"keywords": [
"webextension"
],
"author": "ndom91 <yo@ndo.dev> (https://ndo.dev)",
"repository": "https://github.com/ndom91/github-search-preview",
"license": "MIT",
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
"dependencies": {
"abort-utils": "^1.2.0",
"code-tag": "^1.2.0",
"delegate-it": "^6.2.1",
"dom-chef": "^5.1.1",
"dom-loaded": "^3.1.0",
"doma": "^4.0.0",
"fit-textarea": "^3.0.0",
"github-url-detection": "^10.0.1",
"indent-textarea": "^4.0.0",
"memoize": "^10.0.0",
"octicons-plain-react": "^19.12.0",
"pretty-bytes": "^6.1.1",
"select-dom": "^9.2.0",
"strip-indent": "^4.0.0",
"tiny-version-compare": "^4.0.0",
"ts-extras": "^0.13.0",
"uint8array-extras": "^1.4.0",
"webext-alert": "^1.0.2",
"webext-base-css": "^2.0.1",
"webext-detect": "^5.3.0",
"webext-dynamic-content-scripts": "^10.0.4",
"webext-msg": "^1.0.0",
"webext-options-sync-per-domain": "^4.2.3",
"webext-permission-toggle": "^5.1.0",
"webext-storage": "^1.2.2",
"webext-storage-cache": "^6.0.3",
"webext-tools": "^2.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@eslint-react/eslint-plugin": "^1.15.2",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-sucrase": "^5.0.2",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/chrome": "^0.0.280",
"@types/codemirror": "^5.60.15",
"@types/dom-navigation": "^1.0.4",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"eslint": "^9.14.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-svelte": "^2.46.0",
"lightningcss": "^1.28.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rollup": "^4.25.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-svelte": "^7.2.2",
"rollup-plugin-webpack-stats": "^1.1.1",
"shiki": "^1.22.2",
"stylelint": "^16.10.0",
"svelte": "4",
"svelte-preprocess": "6",
"type-fest": "^4.26.1",
"typed-query-selector": "^2.12.0",
"typescript": "^5.6.3",
"unplugin-lightningcss": "^0.1.0"
},
"prettier": {
"useTabs": false
},
"webExt": {
"sourceDir": "distribution"
}
}