-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "micro-sr25519",
"version": "0.1.1",
"description": "Minimal implementation of sr25519 (polkadot) cryptography, with Merlin and Strobe",
"files": [
"lib",
"index.ts"
],
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/index.js"
}
},
"dependencies": {
"@noble/curves": "~1.8.0",
"@noble/hashes": "~1.7.1"
},
"devDependencies": {
"@paulmillr/jsbt": "0.3.1",
"micro-bmark": "0.4.0",
"micro-should": "0.5.1",
"prettier": "3.3.2",
"typescript": "5.5.2"
},
"sideEffects": false,
"author": "Paul Miller (https://paulmillr.com)",
"license": "MIT",
"homepage": "https://github.com/paulmillr/micro-sr25519",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/micro-sr25519.git"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"build:release": "npx jsbt esbuild test/build",
"bench": "cd test/benchmark; npm i; node index.js",
"lint": "prettier --check index.ts test/*.test.js",
"format": "prettier --write index.ts test/*.test.js",
"test": "node test/index.js",
"test:bun": "bun test/index.js",
"test:deno": "deno --allow-env --allow-read test/index.js"
},
"keywords": [
"sr25519",
"polkadot",
"merlin",
"strobe",
"schnorr",
"schnorrkel",
"ristretto"
],
"funding": "https://paulmillr.com/funding/"
}