-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 945 Bytes
/
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
{
"name": "@adraffy/keccak",
"version": "1.3.3",
"description": "Keccak",
"scripts": {
"test": "node test/test-all.js",
"shake": "node test/shake.js",
"speed": "node test/speed.js",
"build": "rollup -c"
},
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./256": {
"require": "./dist/keccak256.cjs",
"import": "./dist/keccak256.mjs",
"types": "./dist/keccak256.d.ts"
}
},
"files": [
"./dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adraffy/keccak.js.git"
},
"license": "MIT",
"homepage": "https://github.com/adraffy/keccak.js#readme",
"author": "raffy.eth",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"js-sha3": "^0.8.0",
"rollup": "^3.20.0",
"sha3": "^2.1.4"
},
"keywords": [
"sha3",
"keccak",
"shake"
]
}