forked from refined-github/refined-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
195 lines (195 loc) · 6.46 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"private": true,
"type": "module",
"scripts": {
"vitest": "NODE_NO_WARNINGS=1 vitest --run",
"build": "run-p build:* --continue-on-error",
"build:typescript": "tsc --noEmit",
"build:bundle": "rollup -c",
"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 .",
"new": "bash build/new-feature.sh",
"lint:prettier": "prettier . --check",
"pack:safari": "xcodebuild -project 'safari/Refined GitHub.xcodeproj' -scheme 'Refined GitHub' -destination 'platform=macOS'",
"prepare:safari": "bash build/prepare-safari-release.sh",
"start": "npm run watch",
"test": "run-p vitest lint:* build:* --continue-on-error",
"watch": "run-p watch:* --continue-on-error",
"watch:typescript": "tsc --noEmit --watch --preserveWatchOutput",
"watch:bundle": "rollup -c --watch"
},
"prettier": {
"singleQuote": true
},
"stylelint": {
"extends": [
"stylelint-config-standard",
"@stylistic/stylelint-config"
],
"rules": {
"alpha-value-notation": "percentage",
"@stylistic/string-quotes": "single",
"comment-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment",
"stylelint-commands"
]
}
],
"@stylistic/indentation": null,
"@stylistic/declaration-colon-newline-after": null,
"@stylistic/selector-combinator-space-before": null,
"@stylistic/selector-descendant-combinator-no-non-space": null,
"@stylistic/value-list-comma-newline-after": null,
"@stylistic/max-line-length": null,
"custom-property-pattern": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"no-descending-specificity": null
}
},
"dependencies": {
"@fregante/mi-cron": "^2.0.0",
"@sindresorhus/to-milliseconds": "^2.0.0",
"abort-utils": "^1.2.0",
"batched-function": "^2.0.1",
"code-tag": "^1.2.0",
"debounce-fn": "^6.0.0",
"delegate-it": "^6.2.1",
"dom-chef": "^5.1.1",
"dom-loaded": "^3.1.0",
"doma": "^4.0.0",
"element-ready": "^7.0.0",
"filter-altered-clicks": "^2.1.1",
"fit-textarea": "^2.0.0",
"flat-zip": "^1.0.1",
"github-url-detection": "^10.0.1",
"indent-textarea": "^4.0.0",
"js-abbreviation-number": "^1.4.0",
"linkify-issues": "^4.1.0",
"linkify-urls": "^5.0.1",
"memoize": "^10.0.0",
"octicons-plain-react": "^19.12.0",
"one-event": "^4.3.0",
"one-mutation": "^3.0.1",
"pretty-bytes": "^6.1.1",
"push-form": "^1.0.1",
"regex-join": "^2.1.0",
"select-dom": "^9.2.0",
"shorten-repo-url": "^5.2.1",
"strip-indent": "^4.0.0",
"text-field-edit": "^4.1.1",
"tiny-version-compare": "^4.0.0",
"ts-extras": "^0.13.0",
"twas": "^2.1.3",
"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": "^4.2.4",
"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",
"zip-text-nodes": "^1.0.0"
},
"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",
"@stylistic/stylelint-config": "^2.0.0",
"@types/chrome": "^0.0.280",
"@types/codemirror": "^5.60.15",
"@types/dom-navigation": "^1.0.4",
"@types/node": "^22.7.8",
"@types/react": "^17.0.52",
"daily-version": "^2.0.0",
"dot-json": "^1.3.0",
"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",
"fast-ignore": "^1.1.3",
"filenamify": "^6.0.0",
"highlight.js": "^11.10.0",
"linkedom": "^0.18.5",
"npm-run-all": "^4.1.5",
"p-memoize": "^7.1.1",
"prettier": "^3.3.3",
"rollup": "^4.24.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.0",
"snarkdown": "^2.0.0",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"svelte": "^5.1.3",
"type-fest": "^4.26.1",
"typed-query-selector": "^2.12.0",
"typescript": "^5.5.4",
"unplugin-lightningcss": "^0.1.0",
"vitest": "^2.1.3"
},
"engines": {
"node": ">= 20",
"npm": ">= 10"
},
"graphql": {
"schema": "https://docs.github.com/public/schema.docs.graphql"
},
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.find": "npm:@nolyfill/array.prototype.find@^1",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"array.prototype.toreversed": "npm:@nolyfill/array.prototype.toreversed@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-regex": "npm:@nolyfill/is-regex@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.groupby": "npm:@nolyfill/object.groupby@^1",
"object.hasown": "npm:@nolyfill/object.hasown@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"string.prototype.padend": "npm:@nolyfill/string.prototype.padend@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"string.prototype.repeat": "npm:@nolyfill/string.prototype.repeat@^1"
},
"webExt": {
"sourceDir": "distribution",
"run": {
"keepProfileChanges": true,
"firefoxProfile": "./test/web-ext-profile",
"chromiumProfile": "./test/web-ext-profile",
"startUrl": [
"https://github.com/refined-github/refined-github/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc"
]
}
}
}