-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.61 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
{
"name": "cardano-data-lite",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test-serialization ; npm run test-api",
"test-serialization": "NODE_OPTIONS=--experimental-vm-modules jest serialization",
"test-api": "npm run generate-cdl-definitions ; NODE_OPTIONS=--experimental-vm-modules jest api",
"codegen": "tsx conway-cddl/codegen/main.ts",
"generate-grammar-bundle": "npx ohm generateBundles -e -t tests/api/grammar.ohm",
"generate-cdl-definitions": "make typedefs",
"get-transactions": "tsx tests/serialization/get_transactions.ts",
"cleanup-compilation-artifacts": "make clean; npm run generate-grammar-bundle"
},
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@blockfrost/blockfrost-js": "^5.5.0",
"@emurgo/cardano-serialization-lib-nodejs-gc": "^12.1",
"@jest/globals": "^29.5.13",
"@ohm-js/cli": "^2.0.0",
"@prettier/sync": "^0.5.2",
"@sinclair/typebox": "^0.33.7",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.13",
"@types/node": "^20.12.7",
"base58-js": "^2.0.0",
"change-case": "^5.4.4",
"esbuild": "^0.20.2",
"esbuild-jest": "^0.5.0",
"jest": "^29.7.0",
"ohm-js": "^17.1.0",
"prettier": "^3.3.2",
"ts-jest": "^29.2.5",
"tsafe": "^1.6.6",
"tsx": "^4.15.7",
"typescript": "^5.5.4",
"typescript-language-server": "^4.3.3",
"yaml": "^2.4.5"
},
"dependencies": {
"@aws-crypto/crc32": "^5.2.0",
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.5.0",
"bech32": "^2.0.0",
"tweetnacl": "^1.0.3"
}
}