-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.16 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
{
"private": true,
"name": "warpgate",
"version": "1.1.0",
"description": "A lightweight browser extension to jump to various external bookmarks from the address bar.",
"license": "MPL-2.0",
"author": "cheap glitch <[email protected]> (https://github.com/cheap-glitch)",
"repository": "cheap-glitch/warpgate",
"homepage": "https://github.com/cheap-glitch/warpgate#readme",
"bugs": "https://github.com/cheap-glitch/warpgate/issues",
"funding": "https://github.com/sponsors/cheap-glitch",
"keywords": [
"address",
"browser",
"extension",
"firefox",
"github",
"jump",
"navigation",
"omnibar",
"productivity",
"repos",
"stars",
"webext",
"webextension"
],
"scripts": {
"build": "parcel build src/manifest.json --target webext-prod --no-cache --log-level info --reporter @parcel/reporter-bundle-analyzer",
"lint": "run-p lint:* --continue-on-error",
"lint:ts": "eslint . --ext .ts --ignore-path .gitignore",
"lint:webext": "web-ext lint",
"prebuild": "del dist",
"watch": "run-p watch:* --continue-on-error",
"watch:build": "parcel watch src/manifest.json --host localhost --target webext-dev",
"watch:typescript": "tsc --noEmit --watch --preserveWatchOutput"
},
"targets": {
"webext-dev": {
"distDir": "dist",
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"webext-prod": {
"distDir": "dist",
"sourceMap": false,
"engines": {
"browsers": "last 2 chrome versions, last 2 firefox versions"
}
}
},
"eslintConfig": {
"root": true,
"extends": [
"@cheap-glitch/typescript",
"plugin:no-unsanitized/DOM"
],
"env": {
"es6": true,
"browser": true,
"webextensions": true
},
"overrides": [
{
"files": [
"src/options/options.ts"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
}
}
],
"ignorePatterns": [
"scripts/*.js"
]
},
"webExt": {
"sourceDir": "dist",
"run": {
"keepProfileChanges": true,
"firefoxProfile": "./test/web-ext-profile",
"chromiumProfile": "./test/web-ext-profile",
"startUrl": [
"about:devtools-toolbox?id=warpgate%40cheap-glitch.org&type=extension"
]
}
},
"dependencies": {
"idb": "^7.0.1",
"webext-base-css": "^1.4.0",
"webext-options-sync": "^3.0.1",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@cheap-glitch/eslint-config-typescript": "^2.4.2",
"@cheap-glitch/tsconfig": "^1.0.0",
"@parcel/config-webextension": "^2.4.0",
"@parcel/reporter-bundle-analyzer": "^2.4.0",
"@types/firefox-webext-browser": "^94.0.1",
"cross-zip": "^4.0.0",
"del-cli": "^4.0.1",
"eslint": "^8.12.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-no-unsanitized": "^4.0.1",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.4.1",
"typed-query-selector": "^2.6.1",
"typescript": "^4.6.3",
"web-ext": "^6.8.0",
"webext-base-css": "^1.4.0",
"webext-options-sync": "^3.0.1",
"webextension-polyfill": "^0.8.0"
}
}