-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 869 Bytes
/
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
{
"name": "fediredirect",
"description": "Redirects from a fediverse instance to your own instance",
"engines": {
"node": ">=16.13.1",
"npm": ">=8.1.2"
},
"scripts": {
"start": "web-ext run",
"build": "web-ext build",
"test": "web-ext lint",
"html": "pug --basedir ./ src/pages/settings/index.pug --out src/pages/settings/",
"html-watch": "pug -w --basedir ./ src/pages/settings/index.pug --out src/pages/settings/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manerakai/fediredirect.git"
},
"author": "ManeraKai",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/manerakai/fediredirect/issues"
},
"devDependencies": {
"web-ext": "^7.2.0",
"pug-cli": "^1.0.0-alpha6"
},
"webExt": {
"sourceDir": "./src/",
"run": {
"browserConsole": true
},
"build": {
"overwriteDest": true
}
}
}