-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
60
61
62
63
64
65
66
67
68
{
"type": "module",
"name": "@phi-ag/argon2",
"version": "0.5.21",
"license": "MIT",
"description": "Minimal Argon2 WebAssembly SIMD build",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/phi-ag/argon2.git"
},
"files": [
"dist"
],
"keywords": [
"argon2",
"crypto",
"hashing",
"password",
"wasm",
"webassembly",
"simd",
"emscripten"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./node": "./dist/node.js",
"./fetch": "./dist/fetch.js",
"./argon2.wasm": "./dist/argon2.wasm"
},
"scripts": {
"build": "tsc && cp -f src/argon2.wasm ./dist",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest --run",
"test:dev": "vitest",
"test:coverage": "vitest --run --coverage src",
"test:e2e": "playwright test",
"test:e2e:dev": "PWTEST_WATCH=1 playwright test",
"bench": "pnpm vitest bench --run",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,css,yml,yaml}\"",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test",
"sbom": "node utils/sbom.ts"
},
"devDependencies": {
"@cyclonedx/cyclonedx-library": "10.0.0",
"@eslint/js": "10.0.1",
"@playwright/test": "1.58.2",
"@trivago/prettier-plugin-sort-imports": "6.0.2",
"@types/node": "25.6.0",
"@types/spdx-expression-parse": "4.0.0",
"@vitest/coverage-v8": "4.1.5",
"eslint": "10.2.1",
"globals": "17.5.0",
"hash-wasm": "4.12.0",
"libsodium-wrappers-sumo": "0.8.3",
"prettier": "3.8.3",
"spdx-expression-parse": "4.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"uuid": "14.0.0",
"vitest": "4.1.5"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}