-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 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
{
"name": "@hicaru/argon2-pure.js",
"version": "0.0.4",
"description": "Pure JavaScript implementation of Argon2 password hashing algorithm",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "rollup -c",
"format": "prettier --write ./**/*.{js,ts,test.ts}",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"argon2",
"crypto",
"hashing",
"pure-js",
"password",
"security",
"cryptography",
"argon2d",
"argon2i",
"argon2id"
],
"author": "Rinat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openzebra/argon2.pure.js.git"
},
"bugs": {
"url": "https://github.com/openzebra/argon2.pure.js/issues"
},
"homepage": "https://github.com/openzebra/argon2.pure.js/blob/master/README.md",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/bun": "^1.2.9",
"@vitest/coverage-v8": "^3.1.1",
"prettier": "^3.5.3",
"tslib": "^2.8.1",
"vitest": "^3.1.1"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"blakejs": "^1.2.1"
},
"publishConfig": {
"access": "public"
}
}