This repository was archived by the owner on Nov 27, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.63 KB
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
{
"name": "chromekeepass",
"version": "0.1.0",
"author": "RoelVB",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/RoelVB/ChromeKeePass.git"
},
"scripts": {
"dev": "webpack --mode \"development\"",
"build": "webpack --mode \"production\"",
"watch": "webpack --mode \"development\" -w",
"test": "mocha",
"test:all": "mocha --includeSites",
"test:webserver": "ts-node --transpile-only ./test/runWebserver.ts"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.2",
"async-mutex": "^0.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sjcl-all": "^1.0.1",
"uuid": "^9.0.0",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chrome": "^0.0.235",
"@types/mocha": "^10.0.1",
"@types/react-dom": "^18.0.10",
"@types/sjcl": "^1.0.29",
"@types/uuid": "^9.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"mocha": "^10.2.0",
"mock-keepasshttp": "github:RoelVB/Mock-KeePassHttp",
"puppeteer": "^19.8.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "4.9",
"webpack": "^5.15.0",
"webpack-cli": "^4.4.0"
},
"mocha": {
"spec": [
"test/test.ts"
],
"require": "ts-node/register"
}
}