-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.09 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"type": "module",
"name": "@phi-ag/argon2",
"version": "0.4.1",
"license": "MIT",
"description": "Minimal Argon2 WebAssembly SIMD build",
"repository": {
"type": "git",
"url": "git+https://github.com/phi-ag/argon2.git"
},
"publishConfig": {
"access": "public"
},
"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 --experimental-strip-types utils/sbom.ts"
},
"devDependencies": {
"@cyclonedx/cyclonedx-library": "7.1.0",
"@eslint/js": "9.21.0",
"@playwright/test": "1.50.1",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/eslint__js": "9.14.0",
"@types/node": "22.13.5",
"@vitest/coverage-v8": "3.0.6",
"eslint": "9.21.0",
"globals": "16.0.0",
"hash-wasm": "4.12.0",
"packageurl-js": "2.0.1",
"prettier": "3.5.2",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1",
"uuid": "11.1.0",
"vitest": "3.0.6"
},
"pnpm": {
"ignoredOptionalDependencies": [
"@pkgjs/parseargs",
"fsevents"
]
},
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af"
}