-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
63 lines (63 loc) · 2.49 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
{
"name": "keeweb-connect",
"version": "0.3.7",
"description": "KeeWeb",
"main": "index.js",
"scripts": {
"start": "npm run eslint && npm run build-chrome && npm run build-firefox && npm run build-edge && npm run build-safari",
"build-chrome": "cross-env KW_BROWSER=chrome webpack --mode=production",
"build-firefox": "cross-env KW_BROWSER=firefox webpack --mode=production && npx web-ext build -o -s dist/firefox",
"build-edge": "cross-env KW_BROWSER=edge webpack --mode=production",
"build-safari": "cross-env KW_BROWSER=safari webpack --mode=production",
"watch-chrome": "cross-env KW_BROWSER=chrome webpack --mode=development --watch",
"watch-firefox": "cross-env KW_BROWSER=firefox webpack --mode=development --watch",
"watch-edge": "cross-env KW_BROWSER=edge webpack --mode=development --watch",
"watch-safari": "cross-env KW_BROWSER=safari webpack --mode=development --watch",
"lint-firefox": "web-ext lint --source-dir dist/firefox/",
"clang-format": "cd xcode && clang-format -i **/*.h **/*.m",
"eslint": "eslint webpack.config.ts src scripts",
"prettier": "prettier --write src/**/*.ts src/**/*.tsx pages/*.html styles/*.css",
"download-translations": "ts-node scripts/download-translations",
"bump-version": "ts-node scripts/bump-version",
"publish-firefox-addon": "node .github/publish-firefox-addon.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antelle/keeweb-connect.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/antelle/keeweb-connect/issues"
},
"homepage": "https://github.com/antelle/keeweb-connect#readme",
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/node": "^20.12.10",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"copy-webpack-plugin": "^8.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^3.3.1",
"merge": "^2.1.1",
"prettier": "^2.8.8",
"tiny-typed-emitter": "^2.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^4.2.4",
"web-ext": "^7.11.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"preact": "^10.5.13",
"tweetnacl": "^1.0.3"
}
}