-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 861 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 861 Bytes
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
{
"name": "@rhg/authenticator",
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:verify": "esbuild src/verify-page.ts --bundle --outfile=verify/verify.js --format=iife --target=es2020 --minify",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"build:verify:sri": "bash scripts/update-sri.sh",
"check:sri": "bash scripts/update-sri.sh --check",
"audit:deps": "npm audit --omit=dev"
},
"dependencies": {
"@noble/curves": "^1.8.0"
},
"devDependencies": {
"@types/node": "^25",
"esbuild": "^0.28.0",
"happy-dom": "^20.9.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}