-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.04 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.04 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
57
58
59
{
"name": "htmltrust-browser-reference",
"version": "0.1.0",
"description": "Reference browser extension for HTMLTrust content signature validation",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest",
"build": "node scripts/build.js",
"build:chromium": "node scripts/build.js chromium",
"build:firefox": "node scripts/build.js firefox",
"build:safari": "node scripts/build.js safari",
"build:all": "node scripts/build.js",
"dev": "webpack --mode=development --watch",
"dev:chromium": "cross-env TARGET_BROWSER=chromium webpack --mode=development --watch",
"dev:firefox": "cross-env TARGET_BROWSER=firefox webpack --mode=development --watch",
"dev:safari": "cross-env TARGET_BROWSER=safari webpack --mode=development --watch",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "Jason Grey <jason@jason-grey.com>",
"license": "LicenseRef-PolyForm-Noncommercial-1.0.0",
"devDependencies": {
"@types/chrome": "^0.0.317",
"@types/firefox-webext-browser": "^120.0.4",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"archiver": "^6.0.2",
"copy-webpack-plugin": "^13.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^9.25.1",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.3.2",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.7",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@htmltrust/browser-client": "file:../htmltrust-browser-client",
"@htmltrust/canonicalization": "file:../htmltrust-canonicalization/javascript",
"@simplewebauthn/typescript-types": "^8.3.4",
"axios": "^1.9.0",
"js-sha256": "^0.11.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"simhash-js": "^1.0.0"
}
}