-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.6 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@evolution-sdk/evolution",
"version": "0.5.11",
"description": "A modern TypeScript SDK for Cardano blockchain development",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": [],
"tags": [
"typescript",
"cardano",
"blockchain",
"effect"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./*": "./src/*.ts",
"./blueprint": "./src/blueprint/index.ts",
"./blueprint/*": null,
"./cose": "./src/cose/index.ts",
"./cose/*": null,
"./plutus": "./src/plutus/index.ts",
"./plutus/*": null,
"./sdk/client/internal/*": null,
"./internal/*": null
},
"files": [
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"scripts": {
"build": "tsc -b tsconfig.build.json && babel dist --plugins annotate-pure-calls --out-dir dist --source-maps",
"dev": "tsc -b tsconfig.build.json --watch",
"type-check": "tsc --noEmit",
"lint": "eslint \"src/**/*.{ts,mjs}\" \"test/**/*.{ts,mjs}\"",
"test": "vitest run",
"docgen": "rm -rf docs && docgen",
"clean": "rm -rf dist .turbo docs"
},
"devDependencies": {
"@dcspark/cardano-multiplatform-lib-nodejs": "^6.2.0",
"@emurgo/cardano-message-signing-nodejs": "^1.1.0",
"tinybench": "^6.0.0",
"tsx": "^4.20.4",
"typescript": "^6.0.3"
},
"dependencies": {
"@effect/platform": "^0.96.0",
"@effect/platform-node": "^0.106.0",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.2.0",
"@scure/base": "^2.0.0",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@types/bip39": "^3.0.4",
"bip39": "^3.1.0",
"effect": "^3.21.1"
},
"keywords": [
"cardano",
"blockchain",
"cryptocurrency",
"typescript",
"sdk",
"web3"
],
"homepage": "https://github.com/IntersectMBO/evolution-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/IntersectMBO/evolution-sdk.git"
},
"bugs": {
"url": "https://github.com/IntersectMBO/evolution-sdk/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true,
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/*.js",
"./blueprint": "./dist/blueprint/index.js",
"./blueprint/*": null,
"./cose": "./dist/cose/index.js",
"./cose/*": null,
"./plutus": "./dist/plutus/index.js",
"./plutus/*": null,
"./sdk/client/internal/*": null,
"./internal/*": null
}
}
}