-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "@solar-republic/crypto",
"version": "0.2.14",
"description": "Core crypto library for StarShell",
"homepage": "https://starshell.net/",
"repository": "github:SolarRepublic/crypto",
"license": "MIT",
"author": {
"name": "Blake Regalia",
"email": "[email protected]",
"url": "https://blake-regalia.com/"
},
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist/"
],
"exports": {
".": "./dist/main.js",
"./argon2": "./dist/wasm/argon2.js",
"./bcrypt": "./dist/wasm/bcrypt.js",
"./hmac": "./dist/wasm/hmac.js",
"./ripemd160": "./dist/wasm/ripemd160.js",
"./sha256": "./dist/wasm/sha256.js",
"./wasm/*": "./dist/wasm/*"
},
"scripts": {
"clean": "rm -rf dist/*",
"build": "tsc && tsc-esm-fix --target='dist'",
"test": "node --loader ts-node/esm",
"test:all": "pnpm run test test/**.ts",
"debug": "node --inspect-brk --loader ts-node/esm"
},
"devDependencies": {
"@blake.regalia/belt": "^0.37.0",
"@blake.regalia/eslint-config-elite": "^0.4.4",
"@blake.regalia/tsconfig": "^0.2.0",
"@solar-republic/types": "^0.2.12",
"@types/chai": "^4.3.16",
"@types/node": "^20.14.7",
"@types/web": "^0.0.149",
"@typescript-eslint/parser": "^7.13.1",
"chai": "^5.1.1",
"chai-bites": "^0.2.0",
"esformatter": "^0.11.3",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"tsc-esm-fix": "^2.20.27",
"typescript": "^5.5.2"
},
"dependencies": {
"@blake.regalia/belt": "^0.37.0",
"@solar-republic/wasm-secp256k1": "^0.2.8",
"hash-wasm": "^4.11.0"
},
"publishConfig": {
"access": "public"
}
}