-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
124 lines (124 loc) · 3.63 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,
"type": "module",
"scripts": {
"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",
"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,
"no-descending-specificity": null,
"indentation": 2
}
},
"dependencies": {
"@cheap-glitch/mi-cron": "^1.0.1",
"@primer/octicons-react": "^13.0.0",
"array-union": "^3.0.1",
"copy-text-to-clipboard": "^3.0.1",
"debounce-fn": "^5.0.0",
"delay": "^5.0.0",
"delegate-it": "^3.0.0-1",
"dom-chef": "^5.0.0",
"dom-loaded": "^2.0.0",
"doma": "^3.0.1",
"element-ready": "^6.0.0",
"fit-textarea": "^2.0.0",
"flat-zip": "^1.0.1",
"github-url-detection": "^4.11.0",
"image-promise": "^7.0.1",
"indent-textarea": "^2.1.0",
"js-abbreviation-number": "^1.1.2",
"linkify-issues": "2.0.0-nolookbehind",
"linkify-urls": "3.1.0-nolookbehind",
"marked": "^2.0.3",
"mem": "^8.1.0",
"one-event": "^3.0.0",
"one-mutation": "^2.0.0",
"onetime": "^6.0.0",
"push-form": "^0.8.0",
"regex-join": "^1.0.0",
"sanitize-html": "^2.3.3",
"select-dom": "^7.1.1",
"selector-observer": "^2.1.6",
"shorten-repo-url": "^2.1.0",
"strip-indent": "^3.0.0",
"text-field-edit": "^3.1.0",
"tiny-version-compare": "^3.0.1",
"twas": "^2.1.2",
"webext-base-css": "^1.3.1",
"webext-dynamic-content-scripts": "^7.1.1",
"webext-options-sync-per-domain": "^2.0.2",
"webext-storage-cache": "^4.2.0",
"webextension-polyfill": "^0.7.0",
"zip-text-nodes": "^1.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.9.0",
"@types/chrome": "^0.0.134",
"@types/codemirror": "^0.0.108",
"@types/copy-webpack-plugin": "^6.4.1",
"@types/firefox-webext-browser": "^82.0.0",
"@types/jsdom": "^16.2.10",
"@types/mini-css-extract-plugin": "^1.4.1",
"@types/react": "^17.0.3",
"@types/sanitize-html": "^2.3.1",
"@types/terser-webpack-plugin": "^5.0.3",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.0",
"daily-version": "^2.0.0",
"dot-json": "^1.2.2",
"esbuild-loader": "^2.11.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jsdom": "^16.5.2",
"markdown-wasm": "^1.1.2",
"mini-css-extract-plugin": "^1.4.1",
"npm-run-all": "^4.1.5",
"size-plugin": "^2.0.2",
"stylelint": "^13.12.0",
"stylelint-config-xo": "^0.20.0",
"terser-webpack-plugin": "^5.1.1",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"type-fest": "^0.21.3",
"typed-query-selector": "^2.5.3",
"typescript": "^4.2.4",
"webpack": "^5.31.0",
"webpack-cli": "^4.6.0",
"xo": "^0.38.2"
},
"engines": {
"node": ">= 15",
"npm": ">= 7"
},
"webExt": {
"sourceDir": "distribution",
"run": {
"keepProfileChanges": true,
"firefoxProfile": "./test/web-ext-profile",
"chromiumProfile": "./test/web-ext-profile",
"startUrl": [
"zapier.com"
]
}
},
"volta": {
"node": "15.0.1"
}
}