-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.22 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.22 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
{
"name": "@evolution-sdk/devnet",
"version": "1.1.32",
"description": "Local Cardano devnet for testing and development with Docker",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": [],
"tags": [
"typescript",
"cardano",
"blockchain",
"devnet",
"docker",
"testing"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./*": "./src/*.ts",
"./internal/*": null,
"./*/index": 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",
"check": "tsc -b tsconfig.json",
"type-check": "tsc -b tsconfig.src.json",
"lint": "eslint \"src/**/*.{ts,mjs}\" \"test/**/*.{ts,mjs}\"",
"test": "vitest run",
"clean": "rm -rf dist .turbo"
},
"devDependencies": {
"@types/dockerode": "^3.3.43",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
},
"dependencies": {
"@noble/hashes": "^1.8.0",
"dockerode": "^4.0.7"
},
"peerDependencies": {
"@evolution-sdk/aiken-uplc": "workspace:*",
"@evolution-sdk/evolution": "workspace:*",
"@evolution-sdk/scalus-uplc": "workspace:*",
"@effect/platform": "^0.90.10",
"@effect/platform-node": "^0.96.1",
"effect": "^3.19.3"
},
"keywords": [
"cardano",
"blockchain",
"devnet",
"docker",
"testing",
"development",
"local-network",
"typescript",
"sdk"
],
"homepage": "https://github.com/IntersectMBO/evolution-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/IntersectMBO/evolution-sdk.git",
"directory": "packages/evolution-devnet"
},
"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",
"./internal/*": null,
"./*/index": null
}
}
}