-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
60 lines (60 loc) · 1.59 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
{
"private": true,
"engines": {
"node": "^15.2.0",
"npm": "^7.0.8"
},
"scripts": {
"prettier": "prettier --check '**/*.{yml,ts,json}'",
"typecheck": "tsc -p .",
"eslint": "eslint 'src/**/*.ts'",
"build": "parcel build manifest.json --no-minify --no-source-maps",
"watch": "parcel watch manifest.json --no-hmr --no-source-maps",
"firefox:start": "web-ext run",
"firefox:build": "web-ext build --overwrite-dest",
"firefox:watch": "web-ext build --as-needed --overwrite-dest",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"webExt": {
"sourceDir": "./dist/"
},
"browserslist": [
"last 3 Chrome versions",
"last 3 Firefox versions"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"delay": "^5.0.0",
"dom-to-svg": "^0.12.0",
"file-saver": "^2.0.5",
"pretty-bytes": "^5.4.1",
"svgo": "^2.3.0",
"webextension-polyfill": "^0.8.0",
"xml-formatter": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/github": "^7.2.3",
"@sourcegraph/eslint-config": "^0.25.0",
"@sourcegraph/prettierrc": "^3.0.3",
"@types/file-saver": "^2.0.5",
"@types/firefox-webext-browser": "^82.0.1",
"eslint": "^7.27.0",
"husky": "^6.0.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-web-extension": "^1.6.1",
"parcel-plugin-wrapper": "^0.2.3",
"prettier": "^2.2.1",
"semantic-release": "^17.4.3",
"semantic-release-chrome": "^1.1.3",
"semantic-release-firefox": "^2.0.10",
"typescript": "^4.2.4",
"web-ext": "^6.1.0"
}
}