-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.05 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
{
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"format": "prettier --write src/*",
"check:formatting": "prettier --check src/*",
"check:types": "tsc --noEmit",
"check:addon": "npm run build && web-ext lint",
"check": "npm run check:formatting && npm run check:types && npm run check:addon",
"package": "npm run build && web-ext build --ignore-files .* node_modules web-ext-artifacts src \"assets/!(icon*)\" @types *config* package* --overwrite-dest",
"start:firefox": "web-ext run"
},
"license": "MIT",
"dependencies": {
"@github/markdownlint-github": "^0.6.3",
"@webcomponents/custom-elements": "^1.6.0",
"dom-input-range": "^1.2.0",
"markdownlint": "^0.35.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.4",
"babel-loader": "^9.1.2",
"prettier": "^2.8.8",
"ts-loader": "^9.4.3",
"typescript": "^5.0.4",
"web-ext": "^7.6.2",
"webpack": "^5.83.1",
"webpack-cli": "^5.0.1"
}
}