forked from refined-github/refined-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.72 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
{
"private": true,
"scripts": {
"ava": "rollup test/*.ts --plugin typescript --dir .built/test --chunkFileNames _.mjs --entryFileNames [name].mjs && ava",
"build": "run-p build:* --continue-on-error",
"build:typescript": "tsc --noEmit",
"build:webpack": "webpack --mode=production",
"fix": "run-p 'lint:* -- --fix'",
"lint": "run-p lint:* --continue-on-error",
"lint:css": "stylelint 'source/**/*.css'",
"lint:js": "xo",
"pack:safari": "xcodebuild -project 'safari/Refined GitHub.xcodeproj'",
"release:chrome": "cd distribution && webstore upload --auto-publish",
"release:firefox": "cd distribution && web-ext-submit",
"start": "web-ext run --target=chromium",
"start:firefox": "web-ext run",
"start:safari": "open 'safari/build/Release/Refined GitHub.app'",
"test": "run-p ava lint:* build:*",
"watch": "run-p watch:* --continue-on-error",
"watch:typescript": "tsc --noEmit --watch --preserveWatchOutput",
"watch:webpack": "webpack --mode=development --watch"
},
"stylelint": {
"extends": "stylelint-config-xo",
"rules": {
"selector-type-no-unknown": null,
"declaration-no-important": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-max-universal": null
}
},
"ava": {
"files": [
".built/test/*.mjs"
]
},
"dependencies": {
"@cheap-glitch/mi-cron": "^1.0.1",
"@primer/octicons": "^9.6.0",
"@primer/octicons-v2": "0.0.0-60ee16f",
"copy-text-to-clipboard": "^2.2.0",
"debounce-fn": "^4.0.0",
"delay": "^4.4.0",
"delegate-it": "^2.0.2",
"dom-chef": "^4.2.2",
"dom-loaded": "^2.0.0",
"doma": "^3.0.1",
"element-ready": "^4.1.1",
"fit-textarea": "^2.0.0",
"flat-zip": "^1.0.1",
"github-url-detection": "^4.4.0",
"image-promise": "^7.0.1",
"indent-textarea": "^2.0.2",
"linkify-issues": "2.0.0-nolookbehind",
"linkify-urls": "3.1.0-nolookbehind",
"mem": "^8.0.0",
"onetime": "^5.1.2",
"select-dom": "^6.0.2",
"selector-observer": "^2.1.6",
"shorten-repo-url": "^2.0.1",
"strip-indent": "^3.0.0",
"text-field-edit": "^3.1.0",
"tiny-version-compare": "^3.0.1",
"twas": "^2.1.1",
"webext-base-css": "^1.2.0",
"webext-domain-permission-toggle": "^1.0.1",
"webext-dynamic-content-scripts": "^7.0.0",
"webext-options-sync-per-domain": "^2.0.1",
"webext-storage-cache": "^4.1.1",
"webextension-polyfill": "^0.7.0",
"zip-text-nodes": "^1.0.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@rollup/plugin-typescript": "^6.1.0",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/chrome": "0.0.126",
"@types/codemirror": "0.0.98",
"@types/copy-webpack-plugin": "^6.3.0",
"@types/firefox-webext-browser": "^82.0.0",
"@types/jsdom": "^16.2.5",
"@types/mini-css-extract-plugin": "^1.2.1",
"@types/react": "^16.9.56",
"ava": "^3.12.1",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.1",
"daily-version": "^2.0.0",
"dot-json": "^1.2.0",
"esbuild-loader": "^2.4.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jsdom": "^16.4.0",
"markdown-wasm": "^1.1.2",
"mini-css-extract-plugin": "^1.3.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.33.3",
"size-plugin": "^2.0.1",
"stylelint": "^13.8.0",
"stylelint-config-xo": "^0.20.0",
"terser-webpack-plugin": "^5.0.3",
"ts-node": "^9.0.0",
"type-fest": "^0.19.0",
"typescript": "^4.1.2",
"web-ext": "^5.0.0",
"web-ext-submit": "^5.0.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"xo": "^0.35.0"
},
"webExt": {
"sourceDir": "distribution",
"run": {
"keepProfileChanges": true,
"firefoxProfile": "./test/web-ext-profile",
"chromiumProfile": "./test/web-ext-profile",
"startUrl": [
"github.com"
]
}
}
}