-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.05 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.05 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
{
"name": "@filipo11021/nodejs-password-hashing",
"version": "2.1.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"./contracts": {
"types": "./dist/hashing.d.ts",
"import": "./dist/hashing.js"
},
"./scrypt": {
"types": "./dist/scrypt/scrypt.d.ts",
"import": "./dist/scrypt/scrypt.js"
},
"./argon2": {
"types": "./dist/argon2/argon2.d.ts",
"import": "./dist/argon2/argon2.js"
}
},
"repository": "https://github.com/filipo11021/nodejs-password-hashing",
"type": "module",
"scripts": {
"build": "tsc",
"test": "node --test \"**/*.test.ts\"",
"test:coverage": "node --test --experimental-test-coverage \"**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"lint:fix": "oxlint --type-aware --fix",
"lint:check": "oxlint --type-aware",
"format:fix": "prettier . --write",
"format:check": "prettier . --check",
"publish:test": "pnpm publish --dry-run --no-git-checks",
"ci:test:dispatch": "docker compose -f ./docker/act/docker-compose.yml run --rm act workflow_dispatch --network act-network --env REGISTRY_URL=http://verdaccio:4873 -P ubuntu-latest=catthehacker/ubuntu:act-latest",
"ci:test:push": "docker compose -f ./docker/act/docker-compose.yml run --rm act push --network act-network --env REGISTRY_URL=http://verdaccio:4873 -P ubuntu-latest=catthehacker/ubuntu:act-latest"
},
"engines": {
"node": ">=24.0.0"
},
"keywords": [],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.12.2",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "~24.10.9",
"@types/phc__format": "^1.0.1",
"lefthook": "^2.0.15",
"oxlint": "^1.41.0",
"oxlint-tsgolint": "0.11.1",
"prettier": "3.8.1",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@phc/format": "^1.0.0",
"zod": "^4.3.6"
},
"pnpm": {
"overrides": {
"undici": ">=6.23.0"
}
}
}