generated from tarkant/greasemonkey-webpack-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "totp-autofill",
"version": "0.1",
"description": "A script to auto-fill TOTP tokens on sites that needlessly ask for it every single time despite being asked to 'remember you on this device'",
"main": "index.js",
"scripts": {
"build": "npx webpack",
"start": "npx webpack serve --progress --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HGinnerup/TotpAutofill.git"
},
"keywords": [
"TOTP",
"Greasemonkey"
],
"author": "Henrik Ginnerup",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/HGinnerup/TotpAutofill/issues"
},
"homepage": "https://github.com/HGinnerup/TotpAutofill",
"devDependencies": {
"@types/node": "^14.14.35",
"concat-files": "^0.1.1",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.11.1",
"webpack-dev-server-inject-scripts": "^0.2.0"
},
"dependencies": {
"totp-generator": "^0.0.14"
}
}