-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.67 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
{
"name": "@se-oss/sha256",
"version": "1.0.0",
"description": "A JavaScript library providing utilities for SHA-256 and HMAC-SHA-256 hashing.",
"author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)",
"license": "MIT",
"repository": "github:shahradelahi/sha256",
"homepage": "https://github.com/shahradelahi/sha256#readme",
"keywords": [
"hashing",
"SHA-256",
"HMAC-SHA-256",
"JavaScript",
"crypto",
"edge-runtime",
"browser",
"Node.js"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**"
],
"packageManager": "pnpm@8.15.7",
"scripts": {
"build": "tsup && tsup --dts-only --format esm",
"test": "mocha \"**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"lint": "pnpm typecheck && eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"prepublishOnly": "pnpm test && pnpm lint && pnpm format:check && pnpm build"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"chai": "^5.1.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"mocha": "^10.5.2",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"tsx": "^4.15.8",
"typescript": "^5.5.2"
},
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
}
}