-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@aiken-lang/merkle-patricia-forestry",
"version": "1.2.0",
"private": false,
"repository": "https://github.com/aiken-lang/merkle-patricia-forestry.git ",
"author": "KtorZ <[email protected]>",
"description": "A library for working with Merkle Patricia Tries on Cardano.",
"keywords": [
"merkle tree",
"merkle patricia trie",
"sparse merkle tree",
"patricia trie",
"level",
"aiken",
"cardano"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**"
],
"license": "MPL-2.0",
"scripts": {
"test": "c8 ava",
"build": "tsup lib/index.js --format esm,cjs --dts",
"docs": "jsdoc lib/* -d docs"
},
"devDependencies": {
"ava": "^6.1.3",
"c8": "^10.1.2",
"jsdoc": "^4.0.3",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"blake2b": "^2.1.4",
"level": "^8.0.1"
}
}