-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathdeno.json
25 lines (24 loc) · 1014 Bytes
/
deno.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
{
"tasks": {
"build": "deno run -A build.ts",
"build:core": "cd ./rs_lib && wasm-pack build . --no-pack --weak-refs --release && rm ./pkg/.gitignore; cd ./message_signing && wasm-pack build . --no-pack --weak-refs --release && rm ./pkg/.gitignore",
"publish": "deno task build && deno task test && npm publish dist",
"test": "deno test --allow-env --allow-read --allow-net tests",
"test:core": "cd ./rs_lib && cargo test; cd ./message_signing && RUSTFLAGS=-Awarnings cargo test"
},
"lint": {
"include": ["src/", "tests/", "blueprint.ts"],
"exclude": ["src/core/libs/"]
},
"nodeModulesDir": "none",
"name": "@spacebudz/lucid",
"version": "0.20.5",
"license": "MIT",
"exports": {
".": "./mod.ts",
"./blueprint": "./blueprint.ts"
},
"author": "Alessandro Konrad",
"description": "Lucid is a library designed to simplify creating Cardano transactions and writing off-chain code for Plutus contracts.",
"repository": "https://github.com/spacebudz/lucid"
}